Uses of Interface
org.apache.http.client.cache.HttpCacheStorage

Packages that use HttpCacheStorage
org.apache.http.impl.client.cache This package contains a cache module that can be used for HTTP/1.1 client-side caching. 
org.apache.http.impl.client.cache.ehcache This package contains a storage backend based on Ehcache that can be plugged into a CachingHttpClient and used for storing cache entries. 
org.apache.http.impl.client.cache.memcached This package contains a storage backend based on memcached that can be plugged into a CachingHttpClient and used for storing cache entries. 
 

Uses of HttpCacheStorage in org.apache.http.impl.client.cache
 

Classes in org.apache.http.impl.client.cache that implement HttpCacheStorage
 class BasicHttpCacheStorage
          Basic HttpCacheStorage implementation backed by an instance of LinkedHashMap.
 class ManagedHttpCacheStorage
           HttpCacheStorage implementation capable of deallocating resources associated with the cache entries.
 

Methods in org.apache.http.impl.client.cache with parameters of type HttpCacheStorage
 CachingHttpClientBuilder CachingHttpClientBuilder.setHttpCacheStorage(HttpCacheStorage storage)
           
 

Constructors in org.apache.http.impl.client.cache with parameters of type HttpCacheStorage
CachingExec(ClientExecChain backend, ResourceFactory resourceFactory, HttpCacheStorage storage, CacheConfig config)
           
CachingHttpClient(HttpClient client, HttpCacheStorage storage, CacheConfig config)
          Deprecated. Constructs a CachingHttpClient with the given caching options that stores cache entries in the provided storage backend and uses the given HttpClient for backend requests.
CachingHttpClient(HttpClient client, ResourceFactory resourceFactory, HttpCacheStorage storage, CacheConfig config)
          Deprecated. Constructs a CachingHttpClient with the given caching options that stores cache entries in the provided storage backend and uses the given HttpClient for backend requests.
 

Uses of HttpCacheStorage in org.apache.http.impl.client.cache.ehcache
 

Classes in org.apache.http.impl.client.cache.ehcache that implement HttpCacheStorage
 class EhcacheHttpCacheStorage
          This class is a storage backend for cache entries that uses the popular Ehcache cache implementation.
 

Uses of HttpCacheStorage in org.apache.http.impl.client.cache.memcached
 

Classes in org.apache.http.impl.client.cache.memcached that implement HttpCacheStorage
 class MemcachedHttpCacheStorage
           This class is a storage backend that uses an external memcached for storing cached origin responses.
 



Copyright © 2010–2021 The Apache Software Foundation. All rights reserved.