Package de.hybris.platform.jmx.mbeans
Interface RegionCacheMBean
-
- All Known Implementing Classes:
RegionCacheMBeanImpl
public interface RegionCacheMBeanInterface defining the hybris RegionCache JMX MBean
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.IntegergetCacheFillRatio()The cache fill ratio of cache max size to current cache size.java.lang.LonggetCurrentCacheSize()The current size of the cache.java.lang.LonggetEvictionCount()The number of evicted items from the cache.java.lang.LonggetFetchCount()The number of read operations to the cache.java.lang.LonggetHitCount()The number of requests where the cache had data.java.lang.IntegergetHitRatio()The ratio of hits on the cache of total request count to cache hits.java.lang.LonggetInvalidationCount()The number of invalidations to the cache (typically editing of items).java.lang.LonggetMaximumCacheSize()The maximum size of the cache.java.lang.LonggetMissCount()The number of requests to the cache with no data found.
-
-
-
Method Detail
-
getMaximumCacheSize
java.lang.Long getMaximumCacheSize()
The maximum size of the cache.- Returns:
- max_size
-
getCurrentCacheSize
java.lang.Long getCurrentCacheSize()
The current size of the cache.- Returns:
- current_size
-
getCacheFillRatio
java.lang.Integer getCacheFillRatio()
The cache fill ratio of cache max size to current cache size.- Returns:
- percentage filled cache
-
getMissCount
java.lang.Long getMissCount()
The number of requests to the cache with no data found.- Returns:
- miss_count
-
getHitCount
java.lang.Long getHitCount()
The number of requests where the cache had data.- Returns:
- cache hits
-
getFetchCount
java.lang.Long getFetchCount()
The number of read operations to the cache.- Returns:
- number of reads
-
getInvalidationCount
java.lang.Long getInvalidationCount()
The number of invalidations to the cache (typically editing of items).- Returns:
- count of invalidations
-
getEvictionCount
java.lang.Long getEvictionCount()
The number of evicted items from the cache.- Returns:
- count of evictions
-
getHitRatio
java.lang.Integer getHitRatio()
The ratio of hits on the cache of total request count to cache hits.- Returns:
- hit ratio
-
-