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.memory
Subclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memoryModifier and TypeClassDescriptionclass
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.commons.jcs3.engine.memory.fifo
Subclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.fifoModifier and TypeClassDescriptionclass
FIFOMemoryCache<K,
V> The items are spooled in the order they are added. -
Uses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.lru
Subclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.lruModifier and TypeClassDescriptionclass
LHMLRUMemoryCache<K,
V> This is a test memory manager using the jdk1.4 LinkedHashMap.class
LRUMemoryCache<K,
V> A fast reference management system. -
Uses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.mru
Subclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.mruModifier and TypeClassDescriptionclass
MRUMemoryCache<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.soft
Subclasses of AbstractMemoryCache in org.apache.commons.jcs3.engine.memory.softModifier and TypeClassDescriptionclass
A JCS IMemoryCache that hasSoftReference
to all its values.