Uses of Interface
com.github.benmanes.caffeine.cache.Cache
-
Packages that use Cache Package Description com.github.benmanes.caffeine.cache This package contains caching utilities. -
-
Uses of Cache in com.github.benmanes.caffeine.cache
Subinterfaces of Cache in com.github.benmanes.caffeine.cache Modifier and Type Interface Description interfaceLoadingCache<K,V>A semi-persistent mapping from keys to values.(package private) interfaceLocalLoadingCache<C extends LocalCache<K,V>,K,V>This class provides a skeletal implementation of theLoadingCacheinterface to minimize the effort required to implement aLocalCache.(package private) interfaceLocalManualCache<C extends LocalCache<K,V>,K,V>This class provides a skeletal implementation of theCacheinterface to minimize the effort required to implement aLocalCache.Classes in com.github.benmanes.caffeine.cache that implement Cache Modifier and Type Class Description (package private) static classBoundedLocalCache.BoundedLocalLoadingCache<K,V>(package private) static classBoundedLocalCache.BoundedLocalManualCache<K,V>(package private) classLocalAsyncLoadingCache.LoadingCacheView(package private) static classUnboundedLocalCache.UnboundedLocalLoadingCache<K,V>(package private) static classUnboundedLocalCache.UnboundedLocalManualCache<K,V>Methods in com.github.benmanes.caffeine.cache that return Cache Modifier and Type Method Description <K1 extends K,V1 extends V>
Cache<K1,V1>Caffeine. build()Builds a cache which does not automatically load values when keys are requested.
-