|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.ehcache.management.CacheStatistics
public class CacheStatistics
A JMX CacheStatistics decorator for an ehcache Statistics class.
An immutable Cache statistics implementation} This is like a value object, with the added ability to clear cache statistics on the cache. That ability does not survive any Serialization of this class. On deserialization the cache can be considered disconnected. The accuracy of these statistics are determined by the value of {#getStatisticsAccuracy()} at the time the statistic was computed. This can be changed by settingnet.sf.ehcache.Cache#setStatisticsAccuracy
.
Because this class maintains a reference to an Ehcache, any references held to this class will precent the Ehcache
from getting garbage collected.
Constructor Summary | |
---|---|
CacheStatistics(Ehcache ehcache)
Constructs an object from an ehcache statistics object |
Method Summary | |
---|---|
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()
Warning. |
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 |
Ehcache |
getEhcache()
Return the backing cache. |
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()
Gets the number of elements stored in the cache. |
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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CacheStatistics(Ehcache ehcache)
ehcache
- the backing ehcacheMethod Detail |
---|
public String getAssociatedCacheName()
getAssociatedCacheName
in interface CacheStatisticsMBean
public long getInMemoryHits()
getInMemoryHits
in interface CacheStatisticsMBean
public long getOffHeapHits()
getOffHeapHits
in interface CacheStatisticsMBean
public long getOnDiskHits()
getOnDiskHits
in interface CacheStatisticsMBean
public long getCacheMisses()
getCacheMisses
in interface CacheStatisticsMBean
public long getInMemoryMisses()
getInMemoryMisses
in interface CacheStatisticsMBean
public long getOffHeapMisses()
getOffHeapMisses
in interface CacheStatisticsMBean
public long getOnDiskMisses()
getOnDiskMisses
in interface CacheStatisticsMBean
public long getObjectCount()
Statistics
.
The size is the number of Element
s in the MemoryStore
plus
the number of Element
s in the DiskStore
.
This number is the actual number of elements, including expired elements that have
not been removed. Any duplicates between stores are accounted for.
Expired elements are removed from the the memory store when
getting an expired element, or when attempting to spool an expired element to
disk.
Expired elements are removed from the disk store when getting an expired element,
or when the expiry thread runs, which is once every five minutes.
Statistics
.
This method accounts for elements which might be expired or duplicated between stores. It take approximately
200ms per 1000 elements to execute.
Statistics#STATISTICS_ACCURACY_NONE
.
The number given may contain expired elements. In addition if the DiskStore is used it may contain some double
counting of elements. It takes 6ms for 1000 elements to execute. Time to execute is O(log n). 50,000 elements take
36ms.
getObjectCount
in interface CacheStatisticsMBean
public long getWriterQueueLength()
getWriterQueueLength
in interface CacheStatisticsMBean
public int getWriterMaxQueueSize()
getWriterMaxQueueSize
in interface CacheStatisticsMBean
public long getMemoryStoreObjectCount()
getMemoryStoreObjectCount
in interface CacheStatisticsMBean
public long getOffHeapStoreObjectCount()
getOffHeapStoreObjectCount
in interface CacheStatisticsMBean
public long getDiskStoreObjectCount()
getDiskStoreObjectCount
in interface CacheStatisticsMBean
public Ehcache getEhcache()
public double getCacheHitPercentage()
getCacheHitPercentage
in interface CacheStatisticsMBean
public double getCacheMissPercentage()
getCacheMissPercentage
in interface CacheStatisticsMBean
public double getInMemoryHitPercentage()
getInMemoryHitPercentage
in interface CacheStatisticsMBean
public double getOffHeapHitPercentage()
getOffHeapHitPercentage
in interface CacheStatisticsMBean
public double getOnDiskHitPercentage()
getOnDiskHitPercentage
in interface CacheStatisticsMBean
public long getCacheHits()
getCacheHits
in interface CacheStatisticsMBean
|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |