Class LRUCacheRegion

java.lang.Object
de.hybris.platform.regioncache.region.impl.AbstractMapBasedCacheRegion
de.hybris.platform.regioncache.region.impl.LRUCacheRegion
All Implemented Interfaces:
CacheRegion
Direct Known Subclasses:
FacetSearchConfigCacheRegion, MediaCacheRegion, ScriptsCacheRegion

public class LRUCacheRegion extends AbstractMapBasedCacheRegion
Cache region implementation based on Google's ConcurrentLinkedHashMap. http://code.google.com/p/concurrentlinkedhashmap/
  • Constructor Details

    • LRUCacheRegion

      public LRUCacheRegion(String name)
    • LRUCacheRegion

      public LRUCacheRegion(String name, int maxEntries, boolean statsEnabled)
    • LRUCacheRegion

      public LRUCacheRegion(String name, int maxEntries, boolean statsEnabled, com.googlecode.concurrentlinkedhashmap.Weigher<Object> weigher)
    • LRUCacheRegion

      public LRUCacheRegion(String name, CacheStatistics stats, boolean statsEnabled, int maxEntries, com.googlecode.concurrentlinkedhashmap.Weigher<Object> weigher)
  • Method Details