Uses of Interface
org.apache.jcs.engine.memory.MemoryCache

Packages that use MemoryCache
org.apache.jcs.engine.control The primary cache classes and the hub. 
org.apache.jcs.engine.memory Parent package for memory type plugins. 
org.apache.jcs.engine.memory.lru The primary memory plugin using a 'least recently used' removal policy. 
org.apache.jcs.engine.memory.mru A memory plugin implemented using a 'most recently used' removal policy. 
org.apache.jcs.engine.memory.shrinking   
 

Uses of MemoryCache in org.apache.jcs.engine.control
 

Fields in org.apache.jcs.engine.control declared as MemoryCache
(package private)  MemoryCache CompositeCache.memCache
          The cache hub can only have one memory cache.
 

Methods in org.apache.jcs.engine.control that return MemoryCache
 MemoryCache CompositeCache.getMemoryCache()
          Access to the memory cache for instrumentation.
 

Uses of MemoryCache in org.apache.jcs.engine.memory
 

Classes in org.apache.jcs.engine.memory that implement MemoryCache
 class AbstractMemoryCache
          Some common code for the LRU and MRU caches.
 

Uses of MemoryCache in org.apache.jcs.engine.memory.lru
 

Classes in org.apache.jcs.engine.memory.lru that implement MemoryCache
 class LRUMemoryCache
          A fast reference management system.
 

Uses of MemoryCache in org.apache.jcs.engine.memory.mru
 

Classes in org.apache.jcs.engine.memory.mru that implement MemoryCache
 class MRUMemoryCache
          A SLOW AS HELL reference management system.
 

Uses of MemoryCache in org.apache.jcs.engine.memory.shrinking
 

Fields in org.apache.jcs.engine.memory.shrinking declared as MemoryCache
private  MemoryCache ShrinkerThread.cache
          The MemoryCache instance which this shrinker is watching
 

Constructors in org.apache.jcs.engine.memory.shrinking with parameters of type MemoryCache
ShrinkerThread(MemoryCache cache)
          Constructor for the ShrinkerThread object.