1

我正在开发具有大量 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

为什么缓存永远不会命中?

非常感谢你!

4

1 回答 1

0

我发现了问题。

我试图将请求缓存到返回 JSON 的 PHP 中。PHP 始终被视为动态内容(实际上是),并且它从不被缓存。

尝试仅在应用程序端而不是服务器端缓存 JSON y 时要遵循的路径。这样,它就不会发出请求。

最好的。

编辑

毫无疑问,这种麻烦的最佳解决方案是使用Volley

于 2015-12-02T12:42:34.493 回答