我用来获取图像的服务,就像很多这样的网站没有一个缓存控制标题,表明图像应缓存多长时间。默认情况下,Volley使用http缓存控件头来决定在磁盘上缓存图像的时间。如何覆盖此默认行为并将这些图像保留一段时间?
由于
答案 0 :(得分:11)
我需要将默认缓存策略更改为“全部缓存”策略,而不考虑HTTP标头。
您希望缓存一段时间。有几种方法可以做到这一点,因为代码中有很多地方可以“触摸”网络响应。我建议在第39行修改HttpHeaderParser
(parseCacheHeaders
方法):
Cache.Entry entry = new Cache.Entry();
entry.data = response.data;
entry.etag = serverEtag;
entry.softTtl = softExpire;
entry.ttl = now; // **Edited**
entry.serverDate = serverDate;
entry.responseHeaders = headers;
和另一个Cache.Entry
课程:
/** True if the entry is expired. */
public boolean isExpired() {
return this.ttl + GLOBAL_TTL < System.currentTimeMillis();
}
/** True if a refresh is needed from the original data source. */
public boolean refreshNeeded() {
return this.softTtl + GLOBAL_TTL < System.currentTimeMillis();
}
其中GLOBAL_TTL
是一个常量,表示您希望每个图像在缓存中存在的时间。