public interface CacheStatistics
Cache statistics are accumulated starting from the time a cache is created.
An instance of this class represents local node values only! For an accumulated view
on cluster level, the user has to retrieve all nodes statistics and aggregate values
on his own.
Sample code:
ICache<Key, Value> unwrappedCache = cache.unwrap( ICache.class ); CacheStatistics cacheStatistics = unwrappedCache.getLocalCacheStatistics(); long cacheHits = cacheStatistics.getCacheHits();
Modifier and Type | Method and Description |
---|---|
float |
getAverageGetTime()
The mean time to execute gets.
|
float |
getAveragePutTime()
The mean time to execute puts.
|
float |
getAverageRemoveTime()
The mean time to execute removes.
|
long |
getCacheEvictions()
The total number of evictions from the cache.
|
long |
getCacheGets()
The total number of requests to the cache.
|
float |
getCacheHitPercentage()
This is a measure of cache efficiency.
|
long |
getCacheHits()
The number of get requests that were satisfied by the cache.
|
long |
getCacheMisses()
A miss is a get request that is not satisfied.
|
float |
getCacheMissPercentage()
Returns the percentage of cache accesses that did not find a requested entry
in the cache.
|
long |
getCachePuts()
The total number of puts to the cache.
|
long |
getCacheRemovals()
The total number of removals from the cache.
|
long |
getCreationTime()
Gets the cache creation time.
|
long |
getLastAccessTime()
Gets the last access time to cache.
|
long |
getLastUpdateTime()
Gets the last update time to cache.
|
NearCacheStats |
getNearCacheStatistics()
Gets the Near Cache statistics.
|
long |
getOwnedEntryCount()
Returns the owned entry count in the cache.
|
LocalReplicationStats |
getReplicationStats() |
long getCreationTime()
long getLastAccessTime()
long getLastUpdateTime()
long getOwnedEntryCount()
long getCacheHits()
Cache.containsKey(Object)
is not a get request for
statistics purposes.
In caches with multiple tiered storage, a hit may be implemented as a hit to the cache or to the first tier.
For an EntryProcessor
, a hit occurs when the
key exists and an entry processor can be invoked against it, even if no
methods of Cache.Entry
or
MutableEntry
are called.
float getCacheHitPercentage()
It is calculated as:
getCacheHits()
divided by ()
* 100.
long getCacheMisses()
In a simple cache, a miss occurs when the cache does not satisfy the request.
Cache.containsKey(Object)
is not a get request for
statistics purposes.
For an EntryProcessor
, a miss occurs when the
key does not exist and therefore an entry processor cannot be invoked
against it.
In caches with multiple tiered storage, a miss may be implemented as a miss to the cache or to the first tier.
In a read-through cache, a miss is an absence of the key in the cache that will trigger a call to a CacheLoader. So it is still a miss even though the cache will load and return the value.
Refer to the implementation for precise semantics.
float getCacheMissPercentage()
This is calculated as getCacheMisses()
divided by
getCacheGets()
* 100.
long getCacheGets()
A "get" is an operation that returns the current or previous value. It does not include checking for the existence of a key.
In caches with multiple tiered storage, a get may be implemented as a get to the cache or to the first tier.
long getCachePuts()
A put is counted even if it is immediately evicted.
Replaces are where a put occurs which overrides an existing mapping, and they are counted as a put.
long getCacheRemovals()
long getCacheEvictions()
float getAverageGetTime()
In a read-through cache, the time taken to load an entry on miss is not included in get time.
float getAveragePutTime()
float getAverageRemoveTime()
NearCacheStats getNearCacheStatistics()
LocalReplicationStats getReplicationStats()
Copyright © 2022 Hazelcast, Inc.. All rights reserved.