Uses of Class
org.apache.commons.jcs3.engine.memory.AbstractDoubleLinkedListMemoryCache
Packages that use AbstractDoubleLinkedListMemoryCache
Package
Description
The primary memory plugin using a 'least recently used' removal policy.
A memory plugin implemented using a 'most recently used' removal policy.
-
Uses of AbstractDoubleLinkedListMemoryCache in org.apache.commons.jcs3.engine.memory.fifo
Modifier and TypeClassDescriptionclass
FIFOMemoryCache<K,
V> The items are spooled in the order they are added. -
Uses of AbstractDoubleLinkedListMemoryCache in org.apache.commons.jcs3.engine.memory.lru
-
Uses of AbstractDoubleLinkedListMemoryCache in org.apache.commons.jcs3.engine.memory.mru
Modifier 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.