Uses of Class
org.apache.hc.client5.http.impl.cache.CacheConfig
-
Packages that use CacheConfig Package Description org.apache.hc.client5.http.impl.cache Caching API implementation for both the classic and the asynchronous HTTP transports.org.apache.hc.client5.http.impl.cache.ehcache Ehcache based caching backend implementation.org.apache.hc.client5.http.impl.cache.memcached Memcached based caching backend implementation. -
-
Uses of CacheConfig in org.apache.hc.client5.http.impl.cache
Fields in org.apache.hc.client5.http.impl.cache declared as CacheConfig Modifier and Type Field Description (package private) CacheConfigCachingExecBase. cacheConfigprivate CacheConfigCachingH2AsyncClientBuilder. cacheConfigprivate CacheConfigCachingHttpAsyncClientBuilder. cacheConfigprivate CacheConfigCachingHttpClientBuilder. cacheConfigstatic CacheConfigCacheConfig. DEFAULTMethods in org.apache.hc.client5.http.impl.cache that return CacheConfig Modifier and Type Method Description CacheConfigCacheConfig.Builder. build()protected CacheConfigCacheConfig. clone()Methods in org.apache.hc.client5.http.impl.cache with parameters of type CacheConfig Modifier and Type Method Description static CacheConfig.BuilderCacheConfig. copy(CacheConfig config)CachingH2AsyncClientBuilderCachingH2AsyncClientBuilder. setCacheConfig(CacheConfig cacheConfig)CachingHttpAsyncClientBuilderCachingHttpAsyncClientBuilder. setCacheConfig(CacheConfig cacheConfig)CachingHttpClientBuilderCachingHttpClientBuilder. setCacheConfig(CacheConfig cacheConfig) -
Uses of CacheConfig in org.apache.hc.client5.http.impl.cache.ehcache
Methods in org.apache.hc.client5.http.impl.cache.ehcache with parameters of type CacheConfig Modifier and Type Method Description static EhcacheHttpCacheStorage<HttpCacheStorageEntry>EhcacheHttpCacheStorage. createObjectCache(org.ehcache.Cache<java.lang.String,HttpCacheStorageEntry> cache, CacheConfig config)Creates cache that storesHttpCacheStorageEntrys without direct serialization.static EhcacheHttpCacheStorage<byte[]>EhcacheHttpCacheStorage. createSerializedCache(org.ehcache.Cache<java.lang.String,byte[]> cache, CacheConfig config)Creates cache that stores serializedHttpCacheStorageEntrys.Constructors in org.apache.hc.client5.http.impl.cache.ehcache with parameters of type CacheConfig Constructor Description EhcacheHttpCacheStorage(org.ehcache.Cache<java.lang.String,T> cache, CacheConfig config, HttpCacheEntrySerializer<T> serializer)Constructs a storage backend using the provided Ehcache with the given configuration options, but using an alternative cache entry serialization strategy. -
Uses of CacheConfig in org.apache.hc.client5.http.impl.cache.memcached
Constructors in org.apache.hc.client5.http.impl.cache.memcached with parameters of type CacheConfig Constructor Description MemcachedHttpAsyncCacheStorage(net.spy.memcached.MemcachedClient client, CacheConfig config, HttpCacheEntrySerializer<byte[]> serializer, KeyHashingScheme keyHashingScheme)Create a storage backend using the given memcached client and applying the given cache configuration, serialization, and hashing mechanisms.MemcachedHttpCacheStorage(net.spy.memcached.MemcachedClientIF client, CacheConfig config, HttpCacheEntrySerializer<byte[]> serializer, KeyHashingScheme keyHashingScheme)Create a storage backend using the given memcached client and applying the given cache configuration, serialization, and hashing mechanisms.MemcachedHttpCacheStorage(net.spy.memcached.MemcachedClient client, CacheConfig config, HttpCacheEntrySerializer<byte[]> serializer, KeyHashingScheme keyHashingScheme)Create a storage backend using the given memcached client and applying the given cache configuration, serialization, and hashing mechanisms.
-