Class CacheRegionInfo

java.lang.Object
org.apache.commons.jcs3.admin.CacheRegionInfo

public class CacheRegionInfo extends Object
Stores info on a cache region for the template
  • Constructor Details

    • CacheRegionInfo

      @ConstructorProperties({"cacheName","cacheSize","cacheStatus","cacheStatistics","hitCountRam","hitCountAux","missCountNotFound","missCountExpired","byteCount"}) public CacheRegionInfo(String cacheName, int cacheSize, String cacheStatus, String cacheStatistics, long hitCountRam, long hitCountAux, long missCountNotFound, long missCountExpired, long byteCount)
      Parameterized constructor
      Parameters:
      cacheName - The name of the cache region
      cacheSize - The size of the cache region
      cacheStatus - The status of the cache region
      cacheStatistics - The statistics of the cache region
      hitCountRam - The number of memory hits in the cache region
      hitCountAux - The number of auxiliary hits in the cache region
      missCountNotFound - The number of misses in the cache region because the items were not found
      missCountExpired - The number of misses in the cache region because the items were expired
      byteCount - The number of bytes counted so far, will be a total of all items
  • Method Details