Class GuavaCacheStatistics
- java.lang.Object
-
- org.craftercms.core.cache.CacheStatistics
-
- org.craftercms.core.cache.impl.store.guava.GuavaCacheStatistics
-
public class GuavaCacheStatistics extends CacheStatistics
- Since:
- Author:
- joseross
-
-
Field Summary
Fields Modifier and Type Field Description protected longevictionCountprotected longhitCountprotected longloadExceptionCountprotected longloadSuccessCountprotected longmissCountprotected longtotalLoadTime-
Fields inherited from class org.craftercms.core.cache.CacheStatistics
EMPTY, size
-
-
Constructor Summary
Constructors Constructor Description GuavaCacheStatistics(com.google.common.cache.Cache<K,V> cache)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetEvictionCount()longgetHitCount()longgetLoadExceptionCount()longgetLoadSuccessCount()longgetMissCount()longgetTotalLoadTime()-
Methods inherited from class org.craftercms.core.cache.CacheStatistics
getSize
-
-
-
-
Field Detail
-
hitCount
protected final long hitCount
-
missCount
protected final long missCount
-
loadSuccessCount
protected final long loadSuccessCount
-
loadExceptionCount
protected final long loadExceptionCount
-
totalLoadTime
protected final long totalLoadTime
-
evictionCount
protected final long evictionCount
-
-