Uses of Class
org.apache.jcs.engine.memory.AbstractMemoryCache

Packages that use AbstractMemoryCache
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. 
 

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

Subclasses of AbstractMemoryCache in org.apache.jcs.engine.memory
 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.
 

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

Subclasses of AbstractMemoryCache in org.apache.jcs.engine.memory.fifo
 class FIFOMemoryCache
          The items are spooled in the order they are added.
 

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

Subclasses of AbstractMemoryCache in org.apache.jcs.engine.memory.lru
 class LRUMemoryCache
          A fast reference management system.
 

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

Subclasses of AbstractMemoryCache in org.apache.jcs.engine.memory.mru
 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.
 



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