我正在开发具有大量 Web 服务请求负载的 Android 应用程序。
我已经有一个 LoginActivity ,用户在其中介绍用户名和密码,服务器响应结果和令牌。然后,几个活动(所有活动都从一个公共 BaseActivity 扩展)执行繁重的请求。
我还有一个 ServiceManager 类,它负责所有的服务请求和 HTTP 请求。
我正在努力实现 HttpResponseCache 以减轻这种净负载。现在我有以下代码:
在我的 LoginActivity(第一个启动的)onCreate 中:
//HTTP cache
try {
File httpCacheDir = new File(this.getCacheDir(), "http");
long httpCacheSize = 10 * 1024 * 1024; //10 MiB
HttpResponseCache.install(httpCacheDir, httpCacheSize);
Log.d(TAG, "Cache installed");
} catch (IOException e) {
Log.i(TAG, "HTTP response cache installation failed:" + e);
}
在我的 ServiceManager 的 httpRequest 函数中,这是我每次尝试发出 HTTP 请求时实际执行的函数:
//HTTPS connection
URL requestedUrl = new URL(uri);
httpsConnection = (HttpURLConnection) requestedUrl.openConnection();
httpsConnection.setUseCaches(true);
httpsConnection.setDefaultUseCaches(true);
httpsConnection.setRequestMethod("GET");
BufferedReader br = new BufferedReader(
new InputStreamReader(httpsConnection.getInputStream()));
String line;
while ((line = br.readLine()) != null) {
httpResponse += line;
}
br.close();
httpsConnection.disconnect();
HttpResponseCache cache = HttpResponseCache.getInstalled();
Log.d(TAG, "Cache: " + cache);
if (cache != null) {
Log.d(TAG, "Net count: " + cache.getNetworkCount());
Log.d(TAG, "Hit count: " + cache.getHitCount());
Log.d(TAG, "Request count: " + cache.getRequestCount());
cache.flush();
}
try{
URI uriCached = new URI("<myurl>");
CacheResponse cr = cache.get(uriCached, "GET", null);
String line;
BufferedReader br = new BufferedReader(new InputStreamReader(cr.getBody()));
while ((line = br.readLine()) != null) {
Log.d(TAG, line);
}
} catch (URISyntaxException e1) {
e1.printStackTrace();
} catch (IOException e2) {
e2.printStackTrace();
}
现在,由于服务器端还没有准备好,所以我发出请求的 URL总是相同的。
如您所见,我正在调试一些东西,结果如下:
- 已安装缓存
- 缓存:android.net.http.HttpResponseCache@b3e3b6
- 净计数:X
- 命中数:0
- 请求数:X
- {myJson}
如您所见,当我通过 cache.get() 方法获取 JSON 时,缓存能够读取它,但它永远不会命中。
我在响应头中的服务器端指令 Cache-Control 是: Cache-Control:public Cache-Control:max-age=3800
为什么缓存永远不会命中?
非常感谢你!