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.fifo   
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
 

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 AbstractDoulbeLinkedListMemoryCache
          This class contains methods that are common to memory caches using the double linked list, such as the LRU, MRU, FIFO, and LIFO caches.
 class AbstractMemoryCache
          Some common code for the LRU and MRU caches.
 

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

Classes in org.apache.jcs.engine.memory.fifo that implement MemoryCache
 class FIFOMemoryCache
          The items are spooled in the order they are added.
 

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
          The most recently used items move to the front of the list and get spooled to disk if the cache hub is configured to use a disk cache.
 

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

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



Copyright © 2002-2009 Apache Software Foundation. All Rights Reserved.