Uses of Class
org.apache.commons.jcs3.engine.memory.AbstractMemoryCache
Packages that use AbstractMemoryCache
Package
Description
Parent package for memory type plugins.
The primary memory plugin using a 'least recently used' removal policy.
A memory plugin implemented using a 'most recently used' removal policy.
A memory plugin implemented using soft references.
- 
Uses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memorySubclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memoryModifier and TypeClassDescriptionclassThis 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.commons.jcs3.engine.memory.fifoSubclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.fifoModifier and TypeClassDescriptionclassFIFOMemoryCache<K,V> The items are spooled in the order they are added.
- 
Uses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.lruSubclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.lruModifier and TypeClassDescriptionclassLHMLRUMemoryCache<K,V> This is a test memory manager using the jdk1.4 LinkedHashMap.classLRUMemoryCache<K,V> A fast reference management system.
- 
Uses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.mruSubclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.mruModifier and TypeClassDescriptionclassMRUMemoryCache<K,V> 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 AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.softSubclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.softModifier and TypeClassDescriptionclassA JCS IMemoryCache that hasSoftReferenceto all its values.