Uses of Interface
org.apache.commons.jcs3.engine.memory.behavior.IMemoryCache
Packages that use IMemoryCache
Package
Description
The primary cache classes and the hub.
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 IMemoryCache in org.apache.commons.jcs3.engine.control
Methods in org.apache.commons.jcs3.engine.control that return IMemoryCacheModifier and TypeMethodDescriptionCompositeCache.getMemoryCache()
Access to the memory cache for instrumentation. -
Uses of IMemoryCache in org.apache.commons.jcs3.engine.memory
Classes in org.apache.commons.jcs3.engine.memory that implement IMemoryCacheModifier 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.class
AbstractMemoryCache<K,
V> This base includes some common code for memory caches. -
Uses of IMemoryCache in org.apache.commons.jcs3.engine.memory.fifo
Classes in org.apache.commons.jcs3.engine.memory.fifo that implement IMemoryCacheModifier and TypeClassDescriptionclass
FIFOMemoryCache<K,
V> The items are spooled in the order they are added. -
Uses of IMemoryCache in org.apache.commons.jcs3.engine.memory.lru
Classes in org.apache.commons.jcs3.engine.memory.lru that implement IMemoryCacheModifier 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 IMemoryCache in org.apache.commons.jcs3.engine.memory.mru
Classes in org.apache.commons.jcs3.engine.memory.mru that implement IMemoryCacheModifier 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 IMemoryCache in org.apache.commons.jcs3.engine.memory.soft
Classes in org.apache.commons.jcs3.engine.memory.soft that implement IMemoryCacheModifier and TypeClassDescriptionclass
A JCS IMemoryCache that hasSoftReference
to all its values.