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.controlMethods 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.memoryClasses in org.apache.commons.jcs3.engine.memory that implement IMemoryCacheModifier 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.classAbstractMemoryCache<K,V> This base includes some common code for memory caches.
- 
Uses of IMemoryCache in org.apache.commons.jcs3.engine.memory.fifoClasses in org.apache.commons.jcs3.engine.memory.fifo that implement IMemoryCacheModifier and TypeClassDescriptionclassFIFOMemoryCache<K,V> The items are spooled in the order they are added.
- 
Uses of IMemoryCache in org.apache.commons.jcs3.engine.memory.lruClasses in org.apache.commons.jcs3.engine.memory.lru that implement IMemoryCacheModifier 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 IMemoryCache in org.apache.commons.jcs3.engine.memory.mruClasses in org.apache.commons.jcs3.engine.memory.mru that implement IMemoryCacheModifier 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 IMemoryCache in org.apache.commons.jcs3.engine.memory.softClasses in org.apache.commons.jcs3.engine.memory.soft that implement IMemoryCacheModifier and TypeClassDescriptionclassA JCS IMemoryCache that hasSoftReferenceto all its values.