Uses of Interface
org.apache.jcs.engine.memory.behavior.IMemoryCache

Packages that use IMemoryCache
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 IMemoryCache in org.apache.jcs.engine.memory
 

Subinterfaces of IMemoryCache in org.apache.jcs.engine.memory
 interface MemoryCache
          For the framework.
 

Classes in org.apache.jcs.engine.memory that implement IMemoryCache
 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 IMemoryCache in org.apache.jcs.engine.memory.fifo
 

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

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

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

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

Classes in org.apache.jcs.engine.memory.mru that implement IMemoryCache
 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-2009 Apache Software Foundation. All Rights Reserved.