Interface RegionCacheMBean

All Known Implementing Classes:
RegionCacheMBeanImpl

public interface RegionCacheMBean
Interface defining the hybris RegionCache JMX MBean
  • 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