public interface CacheStatisticsMBean
Modifier and Type | Method and Description |
---|---|
String |
getAssociatedCacheName() |
double |
getCacheHitPercentage()
Returns the percentage of cache accesses that found a requested item in the cache.
|
long |
getCacheHits()
The number of times a requested item was found in the cache.
|
long |
getCacheMisses() |
double |
getCacheMissPercentage()
Returns the percentage of cache accesses that did not find a requested element in the cache.
|
long |
getDiskStoreObjectCount()
Gets the number of objects in the DiskStore
|
double |
getInMemoryHitPercentage()
Returns the percentage of cache accesses that found a requested item cached in-memory.
|
long |
getInMemoryHits()
Number of times a requested item was found in the Memory Store.
|
long |
getInMemoryMisses() |
long |
getMemoryStoreObjectCount()
Gets the number of objects in the MemoryStore
|
long |
getObjectCount() |
double |
getOffHeapHitPercentage()
Returns the percentage of cache accesses that found a requested item cached off-heap.
|
long |
getOffHeapHits()
Number of times a requested item was found in the off-heap store.
|
long |
getOffHeapMisses() |
long |
getOffHeapStoreObjectCount()
Gets the number of objects in the OffHeapStore
|
double |
getOnDiskHitPercentage()
Returns the percentage of cache accesses that found a requested item cached on disk.
|
long |
getOnDiskHits()
Number of times a requested item was found in the Disk Store.
|
long |
getOnDiskMisses() |
int |
getWriterMaxQueueSize()
Gets the maximum size of the write-behind queue, if any.
|
long |
getWriterQueueLength()
Gets the size of the write-behind queue, if any.
|
long getCacheHits()
long getInMemoryHits()
long getOffHeapHits()
long getOnDiskHits()
long getCacheMisses()
long getInMemoryMisses()
long getOffHeapMisses()
long getOnDiskMisses()
long getObjectCount()
long getMemoryStoreObjectCount()
long getOffHeapStoreObjectCount()
long getDiskStoreObjectCount()
String getAssociatedCacheName()
double getCacheHitPercentage()
double getCacheMissPercentage()
double getInMemoryHitPercentage()
double getOffHeapHitPercentage()
double getOnDiskHitPercentage()
long getWriterQueueLength()
int getWriterMaxQueueSize()
Copyright 2001-2018, Terracotta, Inc.