我正在开发一个Android应用程序,它有大量的Web服务请求。
我已经有了一个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();
}
目前,由于服务器端尚未就绪,我正在执行请求的网址始终相同。
正如您所看到的,我正在调试一些事情,结果如下:
正如您所看到的,当我通过cache.get()方法获取它时,缓存能够读取我的JSON,但它永远不会出现。
我在响应标头中的服务器端指令Cache-Control是: 缓存控制:公众 缓存控制:最大年龄= 3800
为什么缓存永远不会命中?
非常感谢!
答案 0 :(得分:0)
我发现了问题。
我试图将请愿缓存到返回JSON的PHP。 PHP始终被视为动态内容(实际上是),并且它从未被缓存过。
尝试仅缓存JSON和应用程序端而不是服务器端时要遵循的路径。这样,它就不会发出请求。
最佳。
修改强>
毫无疑问,使用Volley
可以解决此类问题的最佳解决方案