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 interface
LoadingCache<K,V>
A semi-persistent mapping from keys to values.(package private) interface
LocalLoadingCache<C extends LocalCache<K,V>,K,V>
This class provides a skeletal implementation of theLoadingCache
interface to minimize the effort required to implement aLocalCache
.(package private) interface
LocalManualCache<C extends LocalCache<K,V>,K,V>
This class provides a skeletal implementation of theCache
interface 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 class
BoundedLocalCache.BoundedLocalLoadingCache<K,V>
(package private) static class
BoundedLocalCache.BoundedLocalManualCache<K,V>
(package private) class
LocalAsyncLoadingCache.LoadingCacheView
(package private) static class
UnboundedLocalCache.UnboundedLocalLoadingCache<K,V>
(package private) static class
UnboundedLocalCache.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.
-