Store package.
See: Description
Interface Summary | |
---|---|
Store | This is the interface for all stores. |
Class Summary | |
---|---|
DiskStore | A disk store implementation. |
DiskStore.MemoryEfficientByteArrayOutputStream | This class is designed to minimse the number of System.arraycopy(); methods required to complete. |
FifoMemoryStore | First-In-First-Out (FIFO) implementation of MemoryStore. |
LfuMemoryStore | Less Frequently Used (LFU) implementation of the memory store. |
LruMemoryStore | An implementation of a LruMemoryStore. |
LruMemoryStore.SpoolingLinkedHashMap | An extension of LinkedHashMap which overrides SpoolingLinkedHashMap to persist cache entries to the auxiliary cache before they are removed. |
LruMemoryStore.SpoolingLRUMap | An LRU Map implementation based on Apache Commons LRUMap. |
MemoryStore | An abstract class for the Memory Stores. |
MemoryStoreEvictionPolicy | A typesafe enumeration of eviction policies. |
Stores are used by the Cache to physically implement logical cache operations.