Interface Stats
-
public interface StatsStatistics from the cache, available viaMemcacheService.getStatistics()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetBytesReturnedForHits()Sum of key and value bytes in successful get() and contains().longgetHitCount()The counter of "successful"MemcacheService.get(Object)orMemcacheService.contains(Object)operations.longgetItemCount()Number of entries currently "alive" in the cache.intgetMaxTimeWithoutAccess()Milliseconds since last access of least-recently-used live entry.longgetMissCount()The counter of "unsuccessful"MemcacheService.get(Object)orMemcacheService.contains(Object)operations.longgetTotalItemBytes()Sum of key and value sizes for all live entries currently in cache.
-
-
-
Method Detail
-
getHitCount
long getHitCount()
The counter of "successful"MemcacheService.get(Object)orMemcacheService.contains(Object)operations.
-
getMissCount
long getMissCount()
The counter of "unsuccessful"MemcacheService.get(Object)orMemcacheService.contains(Object)operations.
-
getBytesReturnedForHits
long getBytesReturnedForHits()
Sum of key and value bytes in successful get() and contains().
-
getItemCount
long getItemCount()
Number of entries currently "alive" in the cache.
-
getTotalItemBytes
long getTotalItemBytes()
Sum of key and value sizes for all live entries currently in cache.
-
getMaxTimeWithoutAccess
int getMaxTimeWithoutAccess()
Milliseconds since last access of least-recently-used live entry.
-
-