|
ehcache | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Store | |
---|---|
net.sf.ehcache | This package contains the public API for using ehcache. |
net.sf.ehcache.store | Store package. |
Uses of Store in net.sf.ehcache |
---|
Methods in net.sf.ehcache that return Store | |
---|---|
protected Store |
Cache.createDiskStore()
Creates a disk store when either: overflowToDisk is enabled diskPersistent is enabled |
(package private) Store |
Cache.getDiskStore()
Gets the internal DiskStore. |
Uses of Store in net.sf.ehcache.store |
---|
Classes in net.sf.ehcache.store that implement Store | |
---|---|
class |
DiskStore
A disk store implementation. |
class |
FifoMemoryStore
First-In-First-Out (FIFO) implementation of MemoryStore. |
class |
LfuMemoryStore
Less Frequently Used (LFU) implementation of the memory store. |
class |
LruMemoryStore
An implementation of a LruMemoryStore. |
class |
MemoryStore
An abstract class for the Memory Stores. |
Fields in net.sf.ehcache.store declared as Store | |
---|---|
protected Store |
MemoryStore.diskStore
The DiskStore associated with this MemoryStore. |
Methods in net.sf.ehcache.store with parameters of type Store | |
---|---|
static MemoryStore |
MemoryStore.create(Ehcache cache,
Store diskStore)
A factory method to create a MemoryStore. |
Constructors in net.sf.ehcache.store with parameters of type Store | |
---|---|
FifoMemoryStore(Ehcache cache,
Store diskStore)
Constructor for the FifoMemoryStore object. |
|
LfuMemoryStore(Ehcache cache,
Store diskStore)
Constructor for the LfuMemoryStore object. |
|
LruMemoryStore(Ehcache cache,
Store diskStore)
Constructor for the LruMemoryStore object The backing LinkedHashMap is created with LRU by access order. |
|
MemoryStore(Ehcache cache,
Store diskStore)
Constructs things that all MemoryStores have in common. |
|
ehcache | |||||||||
PREV NEXT | FRAMES NO FRAMES |