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