How to set a caching policy in RESTkit 0.2

It is not clear how to use the RESTKit 0.2 API to configure the cache policy. I have a request that repeats every time I open the application, but I would like it to be cached. How to configure a caching policy to cache a request?

Update I found out that RestKit will automatically cache the associated master data with the data.

+4
source share
1 answer

Caching is controlled by the RKObjectRequestOperation class. Check the "Caching" section of the documentation.

+2
source

All Articles