6

cachingHttpClient を使用して HTTP 応答をキャッシュしようとしていますが、無駄です。これは、 http: //hc.apache.org/httpcomponents-client-ga/tutorial/html/caching.html のリンクを参照してまとめたデモです。

  public class CacheDemo {

    public static void main(String[] args) {
        CacheConfig cacheConfig = new CacheConfig();
        cacheConfig.setMaxCacheEntries(1000);
        cacheConfig.setMaxObjectSizeBytes(1024 * 1024);

        HttpClient cachingClient = new CachingHttpClient(new DefaultHttpClient(), cacheConfig);

        HttpContext localContext = new BasicHttpContext();

        sendRequest(cachingClient, localContext);
        CacheResponseStatus responseStatus = (CacheResponseStatus) localContext.getAttribute(
                CachingHttpClient.CACHE_RESPONSE_STATUS);
        checkResponse(responseStatus);


        sendRequest(cachingClient, localContext);
        responseStatus = (CacheResponseStatus) localContext.getAttribute(
                CachingHttpClient.CACHE_RESPONSE_STATUS);
        checkResponse(responseStatus);
    }

    static void sendRequest(HttpClient cachingClient, HttpContext localContext) {
        HttpGet httpget = new HttpGet("http://www.mydomain.com/content/");
        HttpResponse response = null;
        try {
            response = cachingClient.execute(httpget, localContext);
        } catch (ClientProtocolException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
        HttpEntity entity = response.getEntity();
        try {
            EntityUtils.consume(entity);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

    static void checkResponse(CacheResponseStatus responseStatus) {
        switch (responseStatus) {
            case CACHE_HIT:
                System.out.println("A response was generated from the cache with no requests "
                        + "sent upstream");
                break;
            case CACHE_MODULE_RESPONSE:
                System.out.println("The response was generated directly by the caching module");
                break;
            case CACHE_MISS:
                System.out.println("The response came from an upstream server");
                break;
            case VALIDATED:
                System.out.println("The response was generated from the cache after validating "
                        + "the entry with the origin server");
                break;
        }
    }

  }

単純なプログラムですが、どこが間違っているのかわかりません。あなたの助けをいただければ幸いです。ありがとう。

4

2 に答える 2

4

URL http://www.mydomain.com/content/の GET リクエストは、Http 404 コード (見つかりません) で終了します。この結果はキャッシュできない可能性が高いため、機能しないと思います。

更新: キャッシュから応答を提供するには、特定の条件を満たす必要があります。Apache http クライアントのロギングを有効にする必要があります (例: http://hc.apache.org/httpclient-3.x/logging.html )。何が起こっているのか、他の URL でキャッシュ ミスが発生する理由をデバッグできます。おそらく、ライブラリのソース コードもダウンロードして、そこを参照する必要があります (http://hc.apache.org/downloads.cgi)。org.apache.http.impl.client.cache.CachedResponseSuitabilityChecker特に授業に興味を持つでしょう。これは、ライブラリを使用した次の開発にも役立つはずです。

ところで。http://muvireviews.com/celebrity/full_view/41/Shahrukh-khanは次のヘッダーを返します。

Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0, no-cache, no-store

のifステートメントのためCachedResponseSuitabilityChecker

            if (HeaderConstants.CACHE_CONTROL_NO_CACHE.equals(elt.getName())) {
                log.trace("Response contained NO CACHE directive, cache was not suitable");
                return false;
            }

キャッシュは使用されません。

幸運を ;)

于 2012-04-24T20:22:46.847 に答える