Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set expiration policy for cache using Google's Volley

Tags:

Is it possible to modify the expiration policy for the cache on Google's Volley lib? I believe you can implement your own cache, however is there an easy way to do this with the default implementation?

like image 802
Patrick Avatar asked May 28 '13 02:05

Patrick


1 Answers

No need to write your own cache implementation. You can change method com.android.volley.toolbox.HttpHeaderParser.parseCacheHeaders(NetworkResponse response), ignore these headers, set entry.softTtl and entry.ttl fields to whatever value works for you and use your method in your request class.

There is an example in my answer to similar question - Android Volley + JSONObjectRequest Caching

like image 179
Oleksandr Yefremov Avatar answered Jan 02 '23 22:01

Oleksandr Yefremov