ehcache

Uses of Class
net.sf.ehcache.store.MemoryStoreEvictionPolicy

Packages that use MemoryStoreEvictionPolicy
net.sf.ehcache This package contains the public API for using ehcache. 
net.sf.ehcache.config This package contains the cache configuration code. 
net.sf.ehcache.store Store package. 
 

Uses of MemoryStoreEvictionPolicy in net.sf.ehcache
 

Methods in net.sf.ehcache that return MemoryStoreEvictionPolicy
 MemoryStoreEvictionPolicy Cache.getMemoryStoreEvictionPolicy()
          The policy used to evict elements from the MemoryStore.
 

Constructors in net.sf.ehcache with parameters of type MemoryStoreEvictionPolicy
Cache(java.lang.String name, int maxElementsInMemory, MemoryStoreEvictionPolicy memoryStoreEvictionPolicy, boolean overflowToDisk, java.lang.String diskStorePath, boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds, boolean diskPersistent, long diskExpiryThreadIntervalSeconds, RegisteredEventListeners registeredEventListeners)
          1.2 Constructor

The ConfigurationFactory and clients can create these.

 

Uses of MemoryStoreEvictionPolicy in net.sf.ehcache.config
 

Fields in net.sf.ehcache.config declared as MemoryStoreEvictionPolicy
protected  MemoryStoreEvictionPolicy CacheConfiguration.memoryStoreEvictionPolicy
          The policy used to evict elements from the MemoryStore.
 

Uses of MemoryStoreEvictionPolicy in net.sf.ehcache.store
 

Fields in net.sf.ehcache.store declared as MemoryStoreEvictionPolicy
static MemoryStoreEvictionPolicy MemoryStoreEvictionPolicy.LRU
          LRU - least recently used.
static MemoryStoreEvictionPolicy MemoryStoreEvictionPolicy.LFU
          LFU - least frequently used.
static MemoryStoreEvictionPolicy MemoryStoreEvictionPolicy.FIFO
          FIFO - first in first out, the oldest element by creation time.
 

Methods in net.sf.ehcache.store that return MemoryStoreEvictionPolicy
static MemoryStoreEvictionPolicy MemoryStoreEvictionPolicy.fromString(java.lang.String policy)
          Converts a string representation of the policy into a policy.
 


ehcache

true