@Immutable @ParametersAreNonnullByDefault public final class CacheStats extends Object
Cache.| Modifier | Constructor and Description |
|---|---|
protected |
CacheStats(long hitCount,
long missCount,
long loadSuccessCount,
long loadFailureCount,
long totalLoadTime,
long evictionCount)
Constructs a new
CacheStats. |
| Modifier and Type | Method and Description |
|---|---|
double |
averageLoadPenalty()
Returns the average time spent loading new values.
|
boolean |
equals(Object o) |
long |
evictionCount()
Returns the number of times an entry has been evicted.
|
int |
hashCode() |
long |
hitCount()
Returns the number of times
Cache lookup methods have returned a cached value. |
double |
hitRate()
Returns the ratio of cache requests which were hits.
|
long |
loadCount()
Returns the total number of times that
Cache lookup methods attempted to load new values. |
long |
loadFailureCount()
Returns the number of times
Cache lookup methods failed to load a new value, either because no value was
found or an exception was thrown while loading. |
double |
loadFailureRate()
Returns the ratio of cache loading attempts which threw exceptions.
|
long |
loadSuccessCount()
Returns the number of times
Cache lookup methods have successfully loaded a new value. |
CacheStats |
minus(CacheStats other)
Returns a new
CacheStats representing the difference between this CacheStats and other. |
long |
missCount()
Returns the number of times
Cache lookup methods have returned an uncached (newly loaded) value, or null. |
double |
missRate()
Returns the ratio of cache requests which were misses.
|
CacheStats |
plus(CacheStats other)
Returns a new
CacheStats representing the sum of this CacheStats and other. |
long |
requestCount()
Returns the number of times
Cache lookup methods have returned either a cached or uncached value. |
String |
toString() |
Duration |
totalLoadTime()
Returns the total number of nanoseconds the cache has spent loading new values.
|
protected CacheStats(@Nonnegative long hitCount, @Nonnegative long missCount, @Nonnegative long loadSuccessCount, @Nonnegative long loadFailureCount, @Nonnegative long totalLoadTime, @Nonnegative long evictionCount)
CacheStats.hitCount - the number of cache hitsmissCount - the number of cache missesloadSuccessCount - the number of successful cache loadsloadFailureCount - the number of failed cache loadstotalLoadTime - the total load time (success and failure) in nanosecondsevictionCount - the number of entries evicted from the cache@Nonnegative public long requestCount()
Cache lookup methods have returned either a cached or uncached value. This is
defined as hitCount + missCount.hitCount + missCount@Nonnegative public long hitCount()
Cache lookup methods have returned a cached value.Cache lookup methods have returned a cached value@Nonnegative public double hitRate()
hitCount / requestCount, or
1.0 when requestCount == 0. Note that hitRate + missRate =~ 1.0.@Nonnegative public long missCount()
Cache lookup methods have returned an uncached (newly loaded) value, or null.
Multiple concurrent calls to Cache lookup methods on an absent value can result in multiple misses, all
returning the results of a single cache load operation.Cache lookup methods have returned an uncached (newly loaded) value, or
null@Nonnegative public double missRate()
missCount / requestCount, or
0.0 when requestCount == 0. Note that hitRate + missRate =~ 1.0. Cache misses include all
requests which weren't cache hits, including requests which resulted in either successful or failed loading
attempts, and requests which waited for other threads to finish loading. It is thus the case that missCount >= loadSuccessCount + loadFailureCount. Multiple concurrent misses for the same key will result in
a single load operation.@Nonnegative public long loadCount()
Cache lookup methods attempted to load new values. This includes
both successful load operations, as well as those that threw exceptions. This is defined as loadSuccessCount + loadFailureCount.loadSuccessCount + loadFailureCount@Nonnegative public long loadSuccessCount()
Cache lookup methods have successfully loaded a new value. This is always
incremented in conjunction with missCount, though missCount is also incremented when an
exception is encountered during cache loading (see loadFailureCount). Multiple concurrent misses for the
same key will result in a single load operation.Cache lookup methods have successfully loaded a new value@Nonnegative public long loadFailureCount()
Cache lookup methods failed to load a new value, either because no value was
found or an exception was thrown while loading. This is always incremented in conjunction with missCount,
though missCount is also incremented when cache loading completes successfully (see loadSuccessCount). Multiple concurrent misses for the same key will result in a single load operation.Cache lookup methods failed to load a new value@Nonnegative public double loadFailureRate()
loadFailureCount /
(loadSuccessCount + loadFailureCount), or 0.0 when loadSuccessCount + loadFailureCount == 0.@Nonnegative public Duration totalLoadTime()
loadSuccessCount or loadFailureCount is
incremented.@Nonnegative public double averageLoadPenalty()
totalLoadTime / (loadSuccessCount +
loadFailureCount).@Nonnegative public long evictionCount()
Cache.invalidate(K).@Nonnull public CacheStats minus(CacheStats other)
CacheStats representing the difference between this CacheStats and other.
Negative values, which aren't supported by CacheStats will be rounded up to zero.other - the statistics to subtract withother@Nonnull public CacheStats plus(CacheStats other)
CacheStats representing the sum of this CacheStats and other.other - the statistics to add withCopyright © 2017–2019 Atlanmod. All rights reserved.