Too Long; Didn't Read
Caching is temporarily storing data in application memory that you would normally fetch over the network so that you can access it faster the next time it is required. A good caching layer in our applications can vastly improve the user experience for people with not so good internet connections and at the same time take off some load of your server. I decided to create an open source caching library for android that will allow you to create a cache layer in your app in minutes. In this post I will show how you can cache responses that we can fetch from a server using a GET call.