Uses of Class
com.github.benmanes.caffeine.cache.stats.CacheStats
-
Packages that use CacheStats Package Description com.github.benmanes.caffeine.cache This package contains caching utilities.com.github.benmanes.caffeine.cache.stats This package contains caching statistic utilities. -
-
Uses of CacheStats in com.github.benmanes.caffeine.cache
Methods in com.github.benmanes.caffeine.cache that return CacheStats Modifier and Type Method Description CacheStats
Cache. stats()
Returns a current snapshot of this cache's cumulative statistics.CacheStats
LocalAsyncLoadingCache.LoadingCacheView. stats()
default CacheStats
LocalManualCache. stats()
-
Uses of CacheStats in com.github.benmanes.caffeine.cache.stats
Fields in com.github.benmanes.caffeine.cache.stats declared as CacheStats Modifier and Type Field Description private static CacheStats
CacheStats. EMPTY_STATS
Methods in com.github.benmanes.caffeine.cache.stats that return CacheStats Modifier and Type Method Description static CacheStats
CacheStats. empty()
Returns a statistics instance where no cache events have been recorded.CacheStats
CacheStats. minus(CacheStats other)
Returns a newCacheStats
representing the difference between thisCacheStats
andother
.CacheStats
CacheStats. plus(CacheStats other)
Returns a newCacheStats
representing the sum of thisCacheStats
andother
.CacheStats
ConcurrentStatsCounter. snapshot()
CacheStats
DisabledStatsCounter. snapshot()
CacheStats
GuardedStatsCounter. snapshot()
CacheStats
StatsCounter. snapshot()
Returns a snapshot of this counter's values.Methods in com.github.benmanes.caffeine.cache.stats with parameters of type CacheStats Modifier and Type Method Description CacheStats
CacheStats. minus(CacheStats other)
Returns a newCacheStats
representing the difference between thisCacheStats
andother
.CacheStats
CacheStats. plus(CacheStats other)
Returns a newCacheStats
representing the sum of thisCacheStats
andother
.
-