public interface MemoryCacheMXBean
| Modifier and Type | Method and Description |
|---|---|
double |
getAverageLoadPenalty()
Returns the average time spent loading new values.
|
long |
getEvictionCount()
Returns the number of times an entry has been evicted.
|
long |
getHitCount()
Returns the number of times Cache lookup methods have returned a cached value.
|
double |
getHitRate()
Returns the ratio of cache requests which were hits.
|
long |
getLoadCount()
Returns the total number of times that Cache lookup methods attempted to load new values.
|
long |
getLoadExceptionCount()
Returns the number of times Cache lookup methods threw an exception while loading a new value.
|
double |
getLoadExceptionRate()
Returns the ratio of cache loading attempts which threw exceptions.
|
long |
getLoadSuccessCount()
Returns the number of times Cache lookup methods have successfully loaded a new value.
|
long |
getMissCount()
Returns the number of times Cache lookup methods have returned an uncached (newly loaded) value, or null.
|
double |
getMissRate()
Returns the ratio of cache requests which were misses.
|
long |
getRequestCount()
Returns the number of times Cache lookup methods have returned either a cached or uncached value.
|
long |
getSize()
Returns the number of cached objects
|
long |
getTotalLoadTime()
Returns the total number of nanoseconds the cache has spent loading new values.
|
long getRequestCount()
long getHitCount()
double getHitRate()
long getMissCount()
double getMissRate()
long getLoadCount()
long getLoadSuccessCount()
long getLoadExceptionCount()
double getLoadExceptionRate()
long getTotalLoadTime()
double getAverageLoadPenalty()
long getEvictionCount()
long getSize()
Copyright © 2018 Atlassian. All rights reserved.