ehcache

Package net.sf.ehcache.store

Store package.

See:
          Description

Interface Summary
LfuPolicy.Metadata A type representing relevant metadata from an element, used by LfuPolicy for its operations.
Store This is the interface for all stores.
 

Class Summary
DiskStore A disk store implementation.
FifoMemoryStore First-In-First-Out (FIFO) implementation of MemoryStore.
LfuMemoryStore Less Frequently Used (LFU) implementation of the memory store.
LfuPolicy Contains common LFU policy code for use between the LfuMemoryStore and the DiskStore, which also uses an LfuPolicy for evictions.
LruMemoryStore An implementation of a LruMemoryStore.
MemoryStore An abstract class for the Memory Stores.
MemoryStoreEvictionPolicy A typesafe enumeration of eviction policies.
 

Package net.sf.ehcache.store Description

Store package. This package contains a Store interface and its implementations: a memory store and a disk store.

Stores are used by the Cache to physically implement logical cache operations.


ehcache