|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.ehcache.Cache
public class Cache
Cache is the central class in ehcache. Caches have Element
s and are managed
by the CacheManager
. The Cache performs logical actions. It delegates physical
implementations to its Store
s.
CacheManager
. A Cache thus obtained
is guaranteed to have status Status.STATUS_ALIVE
. This status is checked for any method which
throws IllegalStateException
and the same thrown if it is not alive. This would normally
happen if a call is made after CacheManager.shutdown()
is invoked.
Cache is threadsafe.
Statistics on cache usage are collected and made available through the getStatistics()
methods.
Various decorators are available for Cache, such as BlockingCache, SelfPopulatingCache and the dynamic proxy
ExceptionHandlingDynamicCacheProxy. See each class for details.
Field Summary | |
---|---|
static java.lang.String |
DEFAULT_CACHE_NAME
A reserved word for cache names. |
static long |
DEFAULT_EXPIRY_THREAD_INTERVAL_SECONDS
The default interval between runs of the expiry thread. |
static java.lang.String |
NET_SF_EHCACHE_DISABLED
System Property based method of disabling ehcache. |
static java.lang.String |
NET_SF_EHCACHE_USE_CLASSIC_LRU
System Property based method of selecting the LruMemoryStore in use up to ehcache 1.5. |
Constructor Summary | |
---|---|
Cache(CacheConfiguration cacheConfiguration)
2.0 and higher Constructor The ConfigurationFactory and clients can create these. |
|
Cache(CacheConfiguration cacheConfiguration,
RegisteredEventListeners registeredEventListeners,
BootstrapCacheLoader bootstrapCacheLoader)
2.0 and higher Constructor The ConfigurationFactory and clients can create these. |
|
Cache(java.lang.String name,
int maxElementsInMemory,
boolean overflowToDisk,
boolean eternal,
long timeToLiveSeconds,
long timeToIdleSeconds)
1.0 Constructor. |
|
Cache(java.lang.String name,
int maxElementsInMemory,
boolean overflowToDisk,
boolean eternal,
long timeToLiveSeconds,
long timeToIdleSeconds,
boolean diskPersistent,
long diskExpiryThreadIntervalSeconds)
1.1 Constructor. |
|
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. |
|
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,
BootstrapCacheLoader bootstrapCacheLoader)
1.2.1 Constructor The ConfigurationFactory and clients can create these. |
|
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,
BootstrapCacheLoader bootstrapCacheLoader,
int maxElementsOnDisk)
1.2.4 Constructor The ConfigurationFactory and clients can create these. |
|
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,
BootstrapCacheLoader bootstrapCacheLoader,
int maxElementsOnDisk,
int diskSpoolBufferSizeMB)
1.3 Constructor The ConfigurationFactory and clients can create these. |
|
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,
BootstrapCacheLoader bootstrapCacheLoader,
int maxElementsOnDisk,
int diskSpoolBufferSizeMB,
boolean clearOnFlush)
1.6.0 Constructor The ConfigurationFactory and clients can create these. |
|
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,
BootstrapCacheLoader bootstrapCacheLoader,
int maxElementsOnDisk,
int diskSpoolBufferSizeMB,
boolean clearOnFlush,
boolean isTerracottaClustered,
java.lang.String terracottaValueMode,
boolean terracottaCoherentReads)
1.7.0 Constructor The ConfigurationFactory and clients can create these. |
Method Summary | |
---|---|
void |
bootstrap()
Bootstrap command. |
long |
calculateInMemorySize()
Gets the size of the memory store for this cache. |
void |
clearStatistics()
Resets statistics counters back to 0. |
Cache |
clone()
Clones a cache. |
protected Store |
createDiskStore()
Creates a disk store when either: overflowToDisk is enabled diskPersistent is enabled |
void |
disableDynamicFeatures()
Disables dynamic configuration and disable/enable for this cache. |
void |
dispose()
Starts an orderly shutdown of the Cache. |
boolean |
equals(java.lang.Object object)
An equals method which follows the contract of Object.equals(Object)
An Cache is equal to another one if it implements Ehcache and has the same GUID. |
void |
evictExpiredElements()
Causes all elements stored in the Cache to be synchronously checked for expiry, and if expired, evicted. |
void |
flush()
Flushes all cache items from memory to the disk store, and from the DiskStore to disk. |
Element |
get(java.lang.Object key)
Gets an element from the cache. |
Element |
get(java.io.Serializable key)
Gets an element from the cache. |
java.util.Map |
getAllWithLoader(java.util.Collection keys,
java.lang.Object loaderArgument)
The getAll method will return, from the cache, a Map of the objects associated with the Collection of keys in argument "keys". |
float |
getAverageGetTime()
The average get time in ms. |
BootstrapCacheLoader |
getBootstrapCacheLoader()
Accessor for the BootstrapCacheLoader associated with this cache. |
CacheConfiguration |
getCacheConfiguration()
Gets the cache configuration this cache was created with. |
RegisteredEventListeners |
getCacheEventNotificationService()
Use this to access the service in order to register and unregister listeners |
CacheExceptionHandler |
getCacheExceptionHandler()
Gets the ExceptionHandler on this Cache, or null if there isn't one. |
CacheManager |
getCacheManager()
Gets the CacheManager managing this cache. |
int |
getDiskStoreSize()
Returns the number of elements in the disk store. |
java.lang.String |
getGuid()
The GUID for this cache instance can be used to determine whether two cache instance references are pointing to the same cache. |
java.lang.Object |
getInternalContext()
This should not be used return some internal context (generally will be null) |
java.util.List |
getKeys()
Returns a list of all element keys in the cache, whether or not they are expired. |
java.util.List |
getKeysNoDuplicateCheck()
Returns a list of all elements in the cache, whether or not they are expired. |
java.util.List |
getKeysWithExpiryCheck()
Returns a list of all element keys in the cache. |
LiveCacheStatistics |
getLiveCacheStatistics()
This is different from Ehcache.getStatistics() in the way that values
returned from LiveCacheStatistics will reflect the current state
of the cache (and not a snapshot of the cache when the api's were called
like Ehcache.getStatistics() ) |
Policy |
getMemoryStoreEvictionPolicy()
|
long |
getMemoryStoreSize()
Returns the number of elements in the memory store. |
java.lang.String |
getName()
Gets the cache name. |
Element |
getQuiet(java.lang.Object key)
Gets an element from the cache, without updating Element statistics. |
Element |
getQuiet(java.io.Serializable key)
Gets an element from the cache, without updating Element statistics. |
java.util.List<CacheExtension> |
getRegisteredCacheExtensions()
|
java.util.List<CacheLoader> |
getRegisteredCacheLoaders()
|
CacheWriter |
getRegisteredCacheWriter()
Retrieves the CacheWriter that was registered for this cache. |
SampledCacheStatistics |
getSampledCacheStatistics()
Returns sampled statistics for this cache. |
int |
getSize()
Gets the size of the cache. |
int |
getSizeBasedOnAccuracy(int statisticsAccuracy)
Accurately measuring statistics can be expensive. |
Statistics |
getStatistics()
Gets an immutable Statistics object representing the Cache statistics at the time. |
int |
getStatisticsAccuracy()
Accurately measuring statistics can be expensive. |
Status |
getStatus()
Gets the status attribute of the Cache. |
TransactionManagerLookup |
getTransactionManagerLookup()
Get the TransactionManagerLookup implementation used to lookup the TransactionManager. |
Element |
getWithLoader(java.lang.Object key,
CacheLoader loader,
java.lang.Object loaderArgument)
This method will return, from the cache, the Element associated with the argument "key". |
CacheWriterManager |
getWriterManager()
Obtain the writer manager that's used by this cache instance. |
int |
hashCode()
Returns a hash code value for the object. |
void |
initialise()
Newly created caches do not have a MemoryStore or a DiskStore . |
boolean |
isClusterCoherent()
Returns true if the cache is in coherent mode cluster-wide. |
boolean |
isDisabled()
Whether this cache is disabled. |
protected boolean |
isDiskStore()
Whether this cache uses a disk store |
boolean |
isElementInMemory(java.lang.Object key)
Whether an Element is stored in the cache in Memory, indicating a very low cost of retrieval. |
boolean |
isElementInMemory(java.io.Serializable key)
Whether an Element is stored in the cache in Memory, indicating a very low cost of retrieval. |
boolean |
isElementOnDisk(java.lang.Object key)
Whether an Element is stored in the cache on Disk, indicating a higher cost of retrieval. |
boolean |
isElementOnDisk(java.io.Serializable key)
Whether an Element is stored in the cache on Disk, indicating a higher cost of retrieval. |
boolean |
isExpired(Element element)
Checks whether this cache element has expired. |
boolean |
isKeyInCache(java.lang.Object key)
An inexpensive check to see if the key exists in the cache. |
boolean |
isNodeCoherent()
Returns true if the cache is in coherent mode for the current node. |
boolean |
isSampledStatisticsEnabled()
Returns if sampled statistics collection is enabled or disabled |
boolean |
isStatisticsEnabled()
Returns true if statistics collection is enabled |
boolean |
isTerracottaClustered()
Indicates whether this cache is clustered by Terracotta |
boolean |
isValueInCache(java.lang.Object value)
An extremely expensive check to see if the value exists in the cache. |
void |
load(java.lang.Object key)
The load method provides a means to "pre load" the cache. |
void |
loadAll(java.util.Collection keys,
java.lang.Object argument)
The loadAll method provides a means to "pre load" objects into the cache. |
void |
put(Element element)
Put an element in the cache. |
void |
put(Element element,
boolean doNotNotifyCacheReplicators)
Put an element in the cache. |
void |
putQuiet(Element element)
Put an element in the cache, without updating statistics, or updating listeners. |
void |
putWithWriter(Element element)
Put an element in the cache writing through a CacheWriter. |
void |
registerCacheExtension(CacheExtension cacheExtension)
Register a CacheExtension with the cache. |
void |
registerCacheLoader(CacheLoader cacheLoader)
Register a CacheLoader with the cache. |
void |
registerCacheUsageListener(CacheUsageListener cacheUsageListener)
Registers a CacheUsageListener which will be notified of the
cache
usage. |
void |
registerCacheWriter(CacheWriter cacheWriter)
Register the CacheWriter for this cache. |
boolean |
remove(java.lang.Object key)
Removes an Element from the Cache. |
boolean |
remove(java.lang.Object key,
boolean doNotNotifyCacheReplicators)
Removes an Element from the Cache. |
boolean |
remove(java.io.Serializable key)
Removes an Element from the Cache. |
boolean |
remove(java.io.Serializable key,
boolean doNotNotifyCacheReplicators)
Removes an Element from the Cache. |
void |
removeAll()
Removes all cached items. |
void |
removeAll(boolean doNotNotifyCacheReplicators)
Removes all cached items. |
void |
removeCacheUsageListener(CacheUsageListener cacheUsageListener)
Remove an already registered CacheUsageListener , if any. |
boolean |
removeQuiet(java.lang.Object key)
Removes an Element from the Cache, without notifying listeners. |
boolean |
removeQuiet(java.io.Serializable key)
Removes an Element from the Cache, without notifying listeners. |
boolean |
removeWithWriter(java.lang.Object key)
Removes an Element from the Cache and any stores it might be in. |
void |
setBootstrapCacheLoader(BootstrapCacheLoader bootstrapCacheLoader)
Sets the bootstrap cache loader. |
void |
setCacheExceptionHandler(CacheExceptionHandler cacheExceptionHandler)
Sets an ExceptionHandler on the Cache. |
void |
setCacheManager(CacheManager cacheManager)
For use by CacheManager. |
void |
setDisabled(boolean disabled)
Disables or enables this cache. |
void |
setDiskStorePath(java.lang.String diskStorePath)
DiskStore paths can conflict between CacheManager instances. |
void |
setMemoryStoreEvictionPolicy(Policy policy)
Sets the eviction policy strategy. |
void |
setName(java.lang.String name)
Sets the cache name which will name. |
void |
setNodeCoherent(boolean coherent)
Sets the cache in coherent or incoherent mode depending on the parameter on this node. |
void |
setSampledStatisticsEnabled(boolean enableStatistics)
Enable/disable sampled statistics collection. |
void |
setStatisticsAccuracy(int statisticsAccuracy)
Sets the statistics accuracy. |
void |
setStatisticsEnabled(boolean enableStatistics)
Enable/disable statistics collection. |
void |
setTransactionManagerLookup(TransactionManagerLookup lookup)
Sets the TransactionManagerLookup that needs to be used for this cache to lookup the TransactionManager This needs to be set before initialise() is called |
java.lang.String |
toString()
Returns a String representation of Cache . |
void |
unregisterCacheExtension(CacheExtension cacheExtension)
Unregister a CacheExtension with the cache. |
void |
unregisterCacheLoader(CacheLoader cacheLoader)
Unregister a CacheLoader with the cache. |
void |
unregisterCacheWriter()
Unregister the CacheWriter from the cache. |
void |
waitUntilClusterCoherent()
This method waits until the cache is in coherent mode in all the connected nodes. |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final java.lang.String DEFAULT_CACHE_NAME
public static final java.lang.String NET_SF_EHCACHE_DISABLED
java -Dnet.sf.ehcache.disabled=true
in the command line.
public static final java.lang.String NET_SF_EHCACHE_USE_CLASSIC_LRU
java -Dnet.sf.ehcache.use.classic.lru=true
in the command line.
public static final long DEFAULT_EXPIRY_THREAD_INTERVAL_SECONDS
CacheConfiguration#DEFAULT_EXPIRY_THREAD_INTERVAL_SECONDS for a preferred way of setting
,
Constant Field ValuesConstructor Detail |
---|
public Cache(CacheConfiguration cacheConfiguration)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
cacheConfiguration
- the configuration that should be used to create the cache withpublic Cache(CacheConfiguration cacheConfiguration, RegisteredEventListeners registeredEventListeners, BootstrapCacheLoader bootstrapCacheLoader)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
cacheConfiguration
- the configuration that should be used to create the cache withregisteredEventListeners
- a notification service. Optionally null, in which case a new one with no registered listeners will be created.bootstrapCacheLoader
- the BootstrapCacheLoader to use to populate the cache when it is first initialised. Null if none is required.public Cache(java.lang.String name, int maxElementsInMemory, boolean overflowToDisk, boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
This constructor creates disk stores, if specified, that do not persist between restarts.
The default expiry thread interval of 120 seconds is used. This is the interval between runs
of the expiry thread, where it checks the disk store for expired elements. It is not the
the timeToLiveSeconds.
name
- the name of the cache. Note that "default" is a reserved name for the defaultCache.maxElementsInMemory
- the maximum number of elements in memory, before they are evicted (0 == no limit)overflowToDisk
- whether to use the disk storeeternal
- whether the elements in the cache are eternal, i.e. never expiretimeToLiveSeconds
- the default amount of time to live for an element from its creation datetimeToIdleSeconds
- the default amount of time to live for an element from its last accessed or modified dateCache(CacheConfiguration, RegisteredEventListeners, BootstrapCacheLoader),
for full construction support of version 2.0 and higher features.
public Cache(java.lang.String name, int maxElementsInMemory, boolean overflowToDisk, boolean eternal, long timeToLiveSeconds, long timeToIdleSeconds, boolean diskPersistent, long diskExpiryThreadIntervalSeconds)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
name
- the name of the cache. Note that "default" is a reserved name for the defaultCache.maxElementsInMemory
- the maximum number of elements in memory, before they are evicted (0 == no limit)overflowToDisk
- whether to use the disk storeeternal
- whether the elements in the cache are eternal, i.e. never expiretimeToLiveSeconds
- the default amount of time to live for an element from its creation datetimeToIdleSeconds
- the default amount of time to live for an element from its last accessed or modified datediskPersistent
- whether to persist the cache to disk between JVM restartsdiskExpiryThreadIntervalSeconds
- how often to run the disk store expiry thread. A large number of 120 seconds plus is recommendedCache(CacheConfiguration, RegisteredEventListeners, BootstrapCacheLoader),
for full construction support of version 2.0 and higher features.
public 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)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
name
- the name of the cache. Note that "default" is a reserved name for the defaultCache.maxElementsInMemory
- the maximum number of elements in memory, before they are evicted (0 == no limit)memoryStoreEvictionPolicy
- one of LRU, LFU and FIFO. Optionally null, in which case it will be set to LRU.overflowToDisk
- whether to use the disk storediskStorePath
- this parameter is ignored. CacheManager sets it using setter injection.eternal
- whether the elements in the cache are eternal, i.e. never expiretimeToLiveSeconds
- the default amount of time to live for an element from its creation datetimeToIdleSeconds
- the default amount of time to live for an element from its last accessed or modified datediskPersistent
- whether to persist the cache to disk between JVM restartsdiskExpiryThreadIntervalSeconds
- how often to run the disk store expiry thread. A large number of 120 seconds plus is recommendedregisteredEventListeners
- a notification service. Optionally null, in which case a new
one with no registered listeners will be created.Cache(CacheConfiguration, RegisteredEventListeners, BootstrapCacheLoader),
for full construction support of version 2.0 and higher features.
public 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, BootstrapCacheLoader bootstrapCacheLoader)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
name
- the name of the cache. Note that "default" is a reserved name for the defaultCache.maxElementsInMemory
- the maximum number of elements in memory, before they are evicted (0 == no limit)memoryStoreEvictionPolicy
- one of LRU, LFU and FIFO. Optionally null, in which case it will be set to LRU.overflowToDisk
- whether to use the disk storediskStorePath
- this parameter is ignored. CacheManager sets it using setter injection.eternal
- whether the elements in the cache are eternal, i.e. never expiretimeToLiveSeconds
- the default amount of time to live for an element from its creation datetimeToIdleSeconds
- the default amount of time to live for an element from its last accessed or modified datediskPersistent
- whether to persist the cache to disk between JVM restartsdiskExpiryThreadIntervalSeconds
- how often to run the disk store expiry thread. A large number of 120 seconds plus is recommendedregisteredEventListeners
- a notification service. Optionally null, in which case a new one with no registered listeners will be created.bootstrapCacheLoader
- the BootstrapCacheLoader to use to populate the cache when it is first initialised. Null if none is required.Cache(CacheConfiguration, RegisteredEventListeners, BootstrapCacheLoader),
for full construction support of version 2.0 and higher features.
public 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, BootstrapCacheLoader bootstrapCacheLoader, int maxElementsOnDisk)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
name
- the name of the cache. Note that "default" is a reserved name for the defaultCache.maxElementsInMemory
- the maximum number of elements in memory, before they are evicted (0 == no limit)memoryStoreEvictionPolicy
- one of LRU, LFU and FIFO. Optionally null, in which case it will be set to LRU.overflowToDisk
- whether to use the disk storediskStorePath
- this parameter is ignored. CacheManager sets it using setter injection.eternal
- whether the elements in the cache are eternal, i.e. never expiretimeToLiveSeconds
- the default amount of time to live for an element from its creation datetimeToIdleSeconds
- the default amount of time to live for an element from its last accessed or modified datediskPersistent
- whether to persist the cache to disk between JVM restartsdiskExpiryThreadIntervalSeconds
- how often to run the disk store expiry thread. A large number of 120 seconds plus is recommendedregisteredEventListeners
- a notification service. Optionally null, in which case a new one with no registered listeners will be created.bootstrapCacheLoader
- the BootstrapCacheLoader to use to populate the cache when it is first initialised. Null if none is required.maxElementsOnDisk
- the maximum number of Elements to allow on the disk. 0 means unlimited.Cache(CacheConfiguration, RegisteredEventListeners, BootstrapCacheLoader),
for full construction support of version 2.0 and higher features.
public 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, BootstrapCacheLoader bootstrapCacheLoader, int maxElementsOnDisk, int diskSpoolBufferSizeMB)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
name
- the name of the cache. Note that "default" is a reserved name for the defaultCache.maxElementsInMemory
- the maximum number of elements in memory, before they are evicted (0 == no limit)memoryStoreEvictionPolicy
- one of LRU, LFU and FIFO. Optionally null, in which case it will be set to LRU.overflowToDisk
- whether to use the disk storediskStorePath
- this parameter is ignored. CacheManager sets it using setter injection.eternal
- whether the elements in the cache are eternal, i.e. never expiretimeToLiveSeconds
- the default amount of time to live for an element from its creation datetimeToIdleSeconds
- the default amount of time to live for an element from its last accessed or modified datediskPersistent
- whether to persist the cache to disk between JVM restartsdiskExpiryThreadIntervalSeconds
- how often to run the disk store expiry thread. A large number of 120 seconds plus is recommendedregisteredEventListeners
- a notification service. Optionally null, in which case a new one with no registered listeners will be created.bootstrapCacheLoader
- the BootstrapCacheLoader to use to populate the cache when it is first initialised. Null if none is required.maxElementsOnDisk
- the maximum number of Elements to allow on the disk. 0 means unlimited.diskSpoolBufferSizeMB
- the amount of memory to allocate the write buffer for puts to the DiskStore.Cache(CacheConfiguration, RegisteredEventListeners, BootstrapCacheLoader),
for full construction support of version 2.0 and higher features.
public 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, BootstrapCacheLoader bootstrapCacheLoader, int maxElementsOnDisk, int diskSpoolBufferSizeMB, boolean clearOnFlush)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
name
- the name of the cache. Note that "default" is a reserved name for the defaultCache.maxElementsInMemory
- the maximum number of elements in memory, before they are evicted (0 == no limit)memoryStoreEvictionPolicy
- one of LRU, LFU and FIFO. Optionally null, in which case it will be set to LRU.overflowToDisk
- whether to use the disk storediskStorePath
- this parameter is ignored. CacheManager sets it using setter injection.eternal
- whether the elements in the cache are eternal, i.e. never expiretimeToLiveSeconds
- the default amount of time to live for an element from its creation datetimeToIdleSeconds
- the default amount of time to live for an element from its last accessed or modified datediskPersistent
- whether to persist the cache to disk between JVM restartsdiskExpiryThreadIntervalSeconds
- how often to run the disk store expiry thread. A large number of 120 seconds plus is recommendedregisteredEventListeners
- a notification service. Optionally null, in which case a new one with no registered listeners will be created.bootstrapCacheLoader
- the BootstrapCacheLoader to use to populate the cache when it is first initialised. Null if none is required.maxElementsOnDisk
- the maximum number of Elements to allow on the disk. 0 means unlimited.diskSpoolBufferSizeMB
- the amount of memory to allocate the write buffer for puts to the DiskStore.clearOnFlush
- whether the MemoryStore should be cleared when flush()
is called on the cacheCache(CacheConfiguration, RegisteredEventListeners, BootstrapCacheLoader),
for full construction support of version 2.0 and higher features.
public 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, BootstrapCacheLoader bootstrapCacheLoader, int maxElementsOnDisk, int diskSpoolBufferSizeMB, boolean clearOnFlush, boolean isTerracottaClustered, java.lang.String terracottaValueMode, boolean terracottaCoherentReads)
ConfigurationFactory
and clients can create these.
A client can specify their own settings here and pass the Cache
object
into CacheManager.addCache(java.lang.String)
to specify parameters other than the defaults.
Only the CacheManager can initialise them.
name
- the name of the cache. Note that "default" is a reserved name for the defaultCache.maxElementsInMemory
- the maximum number of elements in memory, before they are evicted (0 == no limit)memoryStoreEvictionPolicy
- one of LRU, LFU and FIFO. Optionally null, in which case it will be set to LRU.overflowToDisk
- whether to use the disk storediskStorePath
- this parameter is ignored. CacheManager sets it using setter injection.eternal
- whether the elements in the cache are eternal, i.e. never expiretimeToLiveSeconds
- the default amount of time to live for an element from its creation datetimeToIdleSeconds
- the default amount of time to live for an element from its last accessed or modified datediskPersistent
- whether to persist the cache to disk between JVM restartsdiskExpiryThreadIntervalSeconds
- how often to run the disk store expiry thread. A large number of 120 seconds plus is recommendedregisteredEventListeners
- a notification service. Optionally null, in which case a new one with no registered listeners will be created.bootstrapCacheLoader
- the BootstrapCacheLoader to use to populate the cache when it is first initialised. Null if none is required.maxElementsOnDisk
- the maximum number of Elements to allow on the disk. 0 means unlimited.diskSpoolBufferSizeMB
- the amount of memory to allocate the write buffer for puts to the DiskStore.clearOnFlush
- whether the MemoryStore should be cleared when flush()
is called on the cacheisTerracottaClustered
- whether to cluster this cache with TerracottaterracottaValueMode
- either "SERIALIZATION" or "IDENTITY" mode, only used if isTerracottaClustered=trueterracottaCoherentReads
- whether this cache should use coherent reads (usually should be true) unless optimizing for read-onlyCache(CacheConfiguration, RegisteredEventListeners, BootstrapCacheLoader),
for full construction support of version 2.0 and higher features.
Method Detail |
---|
public TransactionManagerLookup getTransactionManagerLookup()
TransactionManagerLookup
instancepublic void setTransactionManagerLookup(TransactionManagerLookup lookup)
initialise()
is called
setTransactionManagerLookup
in interface Ehcache
lookup
- The TransactionManagerLookup
instancepublic void initialise()
MemoryStore
or a DiskStore
.
This method creates those and makes the cache ready to accept elements
initialise
in interface Ehcache
public CacheWriterManager getWriterManager()
getWriterManager
in interface Ehcache
protected Store createDiskStore()
protected boolean isDiskStore()
public boolean isTerracottaClustered()
true
when the cache is clustered by Terracotta; or false
otherwisepublic void bootstrap()
bootstrap
in interface Ehcache
public final void put(Element element) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException, CacheException
put
in interface Ehcache
element
- A cache Element. If Serializable it can fully participate in replication and the DiskStore. If it is
null
or the key is null
, it is ignored as a NOOP.
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
java.lang.IllegalArgumentException
- if the element is nullpublic final void put(Element element, boolean doNotNotifyCacheReplicators) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException, CacheException
put
in interface Ehcache
element
- A cache Element. If Serializable it can fully participate in replication and the DiskStore. If it is
null
or the key is null
, it is ignored as a NOOP.doNotNotifyCacheReplicators
- whether the put is coming from a doNotNotifyCacheReplicators cache peer, in which case this put should not initiate a
further notification to doNotNotifyCacheReplicators cache peers
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
java.lang.IllegalArgumentException
- if the element is null
CacheException
public void putWithWriter(Element element) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException, CacheException
putWithWriter
in interface Ehcache
element
- An object. If Serializable it can fully participate in replication and the DiskStore.
java.lang.IllegalArgumentException
- if the element is null
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
public final void putQuiet(Element element) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException, CacheException
getQuiet(java.io.Serializable)
.
Synchronization is handled within the method.
Caches which use synchronous replication can throw RemoteCacheException here if the replication to the cluster fails.
This exception should be caught in those circumstances.
putQuiet
in interface Ehcache
element
- A cache Element. If Serializable it can fully participate in replication and the DiskStore. If it is
null
or the key is null
, it is ignored as a NOOP.
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
java.lang.IllegalArgumentException
- if the element is null
CacheException
public final Element get(java.io.Serializable key) throws java.lang.IllegalStateException, CacheException
getQuiet(Object)
to peak into the Element to see its last access time with get
Synchronization is handled within the method.
get
in interface Ehcache
key
- a serializable value. Null keys are not stored so get(null) always returns null
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
isExpired(net.sf.ehcache.Element)
public final Element get(java.lang.Object key) throws java.lang.IllegalStateException, CacheException
getQuiet(Object)
to peak into the Element to see its last access time with get
Synchronization is handled within the method.
get
in interface Ehcache
key
- an Object value
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
isExpired(net.sf.ehcache.Element)
public Element getWithLoader(java.lang.Object key, CacheLoader loader, java.lang.Object loaderArgument) throws CacheException
getWithLoader
in interface Ehcache
key
- key whose associated value is to be returned.loader
- the override loader to use. If null, the cache's default loader will be usedloaderArgument
- an argument to pass to the CacheLoader.
CacheException
public void load(java.lang.Object key) throws CacheException
SelfPopulatingCache
load
in interface Ehcache
key
- key whose associated value to be loaded using the associated CacheLoader if this cache doesn't contain it.
CacheException
public java.util.Map getAllWithLoader(java.util.Collection keys, java.lang.Object loaderArgument) throws CacheException
SelfPopulatingCache
getAllWithLoader
in interface Ehcache
keys
- a collection of keys to be returned/loadedloaderArgument
- an argument to pass to the CacheLoader.
CacheException
public void loadAll(java.util.Collection keys, java.lang.Object argument) throws CacheException
SelfPopulatingCache
loadAll
in interface Ehcache
CacheException
public final Element getQuiet(java.io.Serializable key) throws java.lang.IllegalStateException, CacheException
getQuiet
in interface Ehcache
key
- a serializable value
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
isExpired(net.sf.ehcache.Element)
public final Element getQuiet(java.lang.Object key) throws java.lang.IllegalStateException, CacheException
getQuiet
in interface Ehcache
key
- a serializable value
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
isExpired(net.sf.ehcache.Element)
public final java.util.List getKeys() throws java.lang.IllegalStateException, CacheException
getKeys
in interface Ehcache
Object
keys
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
public final java.util.List getKeysWithExpiryCheck() throws java.lang.IllegalStateException, CacheException
getKeys()
, which is synchronised, and which takes 8ms per 1000 entries. This way
cache liveness is preserved, even if this method is very slow to return.
Consider whether your usage requires checking for expired keys. Because
this method takes so long, depending on cache settings, the list could be
quite out of date by the time you get it.
getKeysWithExpiryCheck
in interface Ehcache
Object
keys
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
public final java.util.List getKeysNoDuplicateCheck() throws java.lang.IllegalStateException
getKeysNoDuplicateCheck
in interface Ehcache
Object
keys
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public final boolean remove(java.io.Serializable key) throws java.lang.IllegalStateException
Element
from the Cache. This also removes it from any
stores it may be in.
Also notifies the CacheEventListener after the element was removed.
Synchronization is handled within the method.
Caches which use synchronous replication can throw RemoteCacheException here if the replication to the cluster fails.
This exception should be caught in those circumstances.
remove
in interface Ehcache
key
- the element key to operate on
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public final boolean remove(java.lang.Object key) throws java.lang.IllegalStateException
Element
from the Cache. This also removes it from any
stores it may be in.
Also notifies the CacheEventListener after the element was removed, but only if an Element
with the key actually existed.
Synchronization is handled within the method.
Caches which use synchronous replication can throw RemoteCacheException here if the replication to the cluster fails.
This exception should be caught in those circumstances.
remove
in interface Ehcache
key
- the element key to operate on
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public final boolean remove(java.io.Serializable key, boolean doNotNotifyCacheReplicators) throws java.lang.IllegalStateException
Element
from the Cache. This also removes it from any
stores it may be in.
Also notifies the CacheEventListener after the element was removed, but only if an Element
with the key actually existed.
Synchronization is handled within the method.
Caches which use synchronous replication can throw RemoteCacheException here if the replication to the cluster fails.
This exception should be caught in those circumstances.
remove
in interface Ehcache
key
- the element key to operate ondoNotNotifyCacheReplicators
- whether the put is coming from a doNotNotifyCacheReplicators cache peer, in which case this put should not initiate a
further notification to doNotNotifyCacheReplicators cache peers
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public final boolean remove(java.lang.Object key, boolean doNotNotifyCacheReplicators) throws java.lang.IllegalStateException
Element
from the Cache. This also removes it from any
stores it may be in.
Also notifies the CacheEventListener after the element was removed, but only if an Element
with the key actually existed.
Synchronization is handled within the method.
remove
in interface Ehcache
key
- the element key to operate ondoNotNotifyCacheReplicators
- whether the put is coming from a doNotNotifyCacheReplicators cache peer, in which case this put should not initiate a
further notification to doNotNotifyCacheReplicators cache peers
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public final boolean removeQuiet(java.io.Serializable key) throws java.lang.IllegalStateException
Element
from the Cache, without notifying listeners. This also removes it from any
stores it may be in.
Listeners are not called.
removeQuiet
in interface Ehcache
key
- the element key to operate on
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public final boolean removeQuiet(java.lang.Object key) throws java.lang.IllegalStateException
Element
from the Cache, without notifying listeners. This also removes it from any
stores it may be in.
Listeners are not called.
Caches which use synchronous replication can throw RemoteCacheException here if the replication to the cluster fails.
This exception should be caught in those circumstances.
removeQuiet
in interface Ehcache
key
- the element key to operate on
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public boolean removeWithWriter(java.lang.Object key) throws java.lang.IllegalStateException
Element
from the Cache and any stores it might be in. This also removes through
to a CacheWriter. If no CacheWriter has been set for the cache, then this method has the same effect as cache.remove().
Also notifies the CacheEventListener after the element was removed, but only if an El ement
with the key actually existed.
removeWithWriter
in interface Ehcache
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public void removeAll() throws java.lang.IllegalStateException, CacheException
removeAll
in interface Ehcache
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
public void removeAll(boolean doNotNotifyCacheReplicators) throws java.lang.IllegalStateException, CacheException
removeAll
in interface Ehcache
doNotNotifyCacheReplicators
- whether the put is coming from a doNotNotifyCacheReplicators cache peer,
in which case this put should not initiate a further notification to doNotNotifyCacheReplicators cache peers
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
public void dispose() throws java.lang.IllegalStateException
dispose
in interface Ehcache
java.lang.IllegalStateException
- if the cache is already Status.STATUS_SHUTDOWN
public CacheConfiguration getCacheConfiguration()
getCacheConfiguration
in interface Ehcache
public final void flush() throws java.lang.IllegalStateException, CacheException
flush
in interface Ehcache
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
public final int getSize() throws java.lang.IllegalStateException, CacheException
Element
s in the MemoryStore
plus the number of Element
s in the DiskStore
. However, if
the cache is Terracotta clustered, the underlying store has a coherent
view of the all the elements in the cache and doesn't have to be
aggregated from an underlying MemoryStore
and DiskStore
.
This number is the actual number of elements, including expired elements
that have not been removed.
Expired elements are removed from the the memory store when getting an
expired element, or when attempting to spool an expired element to disk.
Expired elements are removed from the disk store when getting an expired
element, or when the expiry thread runs, which is once every five
minutes.
To get an exact size, which would exclude expired elements, use
getKeysWithExpiryCheck()
.size(), although see that method for
the approximate time that would take.
To get a very fast result, use getKeysNoDuplicateCheck()
.size().
If the disk store is being used, there will be some duplicates.
getSize
in interface Ehcache
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
public int getSizeBasedOnAccuracy(int statisticsAccuracy) throws java.lang.IllegalStateException, CacheException
getSizeBasedOnAccuracy
in interface Ehcache
statisticsAccuracy
- one of Statistics.STATISTICS_ACCURACY_BEST_EFFORT
,
Statistics.STATISTICS_ACCURACY_GUARANTEED
,
Statistics.STATISTICS_ACCURACY_NONE
java.lang.IllegalStateException
- if the cache is not
Status.STATUS_ALIVE
CacheException
public final long calculateInMemorySize() throws java.lang.IllegalStateException, CacheException
calculateInMemorySize
in interface Ehcache
java.lang.IllegalStateException
CacheException
public final long getMemoryStoreSize() throws java.lang.IllegalStateException
getMemoryStoreSize
in interface Ehcache
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public final int getDiskStoreSize() throws java.lang.IllegalStateException
getDiskStoreSize
in interface Ehcache
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public final Status getStatus()
getStatus
in interface Ehcache
public final java.lang.String getName()
getName
in interface Ehcache
public final void setName(java.lang.String name) throws java.lang.IllegalArgumentException
setName
in interface Ehcache
name
- the name of the cache. Should not be null. Should also not contain any '/' characters, as these interfere
with distribution
java.lang.IllegalArgumentException
- if an illegal name is used.public java.lang.String toString()
String
representation of Cache
.
toString
in interface Ehcache
toString
in class java.lang.Object
public final boolean isExpired(Element element) throws java.lang.IllegalStateException, java.lang.NullPointerException
isExpired
in interface Ehcache
element
- the element to check
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
java.lang.NullPointerException
- if the element is null
todo this does not need to be synchronizedpublic final Cache clone() throws java.lang.CloneNotSupportedException
clone
in interface Ehcache
clone
in class java.lang.Object
Cache
java.lang.CloneNotSupportedException
public final RegisteredEventListeners getCacheEventNotificationService()
getCacheEventNotificationService
in interface Ehcache
public final boolean isElementInMemory(java.io.Serializable key)
isElementInMemory
in interface Ehcache
public final boolean isElementInMemory(java.lang.Object key)
isElementInMemory
in interface Ehcache
public final boolean isElementOnDisk(java.io.Serializable key)
isElementOnDisk
in interface Ehcache
public final boolean isElementOnDisk(java.lang.Object key)
isElementOnDisk
in interface Ehcache
public final java.lang.String getGuid()
getGuid
in interface Ehcache
public final CacheManager getCacheManager()
getCacheManager
in interface Ehcache
public void clearStatistics() throws java.lang.IllegalStateException
clearStatistics
in interface Ehcache
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public int getStatisticsAccuracy()
getStatisticsAccuracy
in interface Ehcache
Statistics.STATISTICS_ACCURACY_BEST_EFFORT
, Statistics.STATISTICS_ACCURACY_GUARANTEED
, Statistics.STATISTICS_ACCURACY_NONE
public void setStatisticsAccuracy(int statisticsAccuracy)
setStatisticsAccuracy
in interface Ehcache
statisticsAccuracy
- one of Statistics.STATISTICS_ACCURACY_BEST_EFFORT
, Statistics.STATISTICS_ACCURACY_GUARANTEED
, Statistics.STATISTICS_ACCURACY_NONE
public void evictExpiredElements()
evictExpiredElements
in interface Ehcache
public boolean isKeyInCache(java.lang.Object key)
isKeyInCache
in interface Ehcache
key
- the key to check.
public boolean isValueInCache(java.lang.Object value)
isValueInCache
in interface Ehcache
value
- to check for
public Statistics getStatistics() throws java.lang.IllegalStateException
Statistics.STATISTICS_ACCURACY_BEST_EFFORT
.
The size is the number of Element
s in the MemoryStore
plus
the number of Element
s in the DiskStore
.
This number is the actual number of elements, including expired elements that have
not been removed. Any duplicates between stores are accounted for.
Expired elements are removed from the the memory store when
getting an expired element, or when attempting to spool an expired element to
disk.
Expired elements are removed from the disk store when getting an expired element,
or when the expiry thread runs, which is once every five minutes.
Statistics.STATISTICS_ACCURACY_GUARANTEED
.
This method accounts for elements which might be expired or duplicated between stores. It take approximately
200ms per 1000 elements to execute.
Statistics.STATISTICS_ACCURACY_NONE
.
The number given may contain expired elements. In addition if the DiskStore is used it may contain some double
counting of elements. It takes 6ms for 1000 elements to execute. Time to execute is O(log n). 50,000 elements take
36ms.
Note, the getSize()
method will have the same value as the size
reported by Statistics for the statistics accuracy of
Statistics.STATISTICS_ACCURACY_BEST_EFFORT
.
getStatistics
in interface Ehcache
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
public void setCacheManager(CacheManager cacheManager)
setCacheManager
in interface Ehcache
cacheManager
- the CacheManager for this cache to use.public BootstrapCacheLoader getBootstrapCacheLoader()
getBootstrapCacheLoader
in interface Ehcache
public void setBootstrapCacheLoader(BootstrapCacheLoader bootstrapCacheLoader) throws CacheException
setBootstrapCacheLoader
in interface Ehcache
bootstrapCacheLoader
- the loader to be used
CacheException
- if this method is called after the cache is initializedpublic void setDiskStorePath(java.lang.String diskStorePath) throws CacheException
setDiskStorePath
in interface Ehcache
diskStorePath
- the new path to be used.
CacheException
- if this method is called after the cache is initializedpublic boolean equals(java.lang.Object object)
Object.equals(Object)
An Cache is equal to another one if it implements Ehcache and has the same GUID.
equals
in class java.lang.Object
object
- the reference object with which to compare.
true
if this object is the same as the obj
argument; false
otherwise.hashCode()
,
Hashtable
public int hashCode()
java.util.Hashtable
.
The general contract of hashCode
is:
hashCode
method on each of
the two objects must produce the same integer result.
Object.equals(Object)
method, then calling the hashCode method on each of the
two objects must produce distinct integer results. However, the
programmer should be aware that producing distinct integer results
for unequal objects may improve the performance of hashtables.
hashCode
in class java.lang.Object
Object.equals(Object)
,
Hashtable
public void registerCacheExtension(CacheExtension cacheExtension)
CacheExtension
with the cache. It will then be tied into the cache lifecycle.
If the CacheExtension is not initialised, initialise it.
registerCacheExtension
in interface Ehcache
public java.util.List<CacheExtension> getRegisteredCacheExtensions()
getRegisteredCacheExtensions
in interface Ehcache
public void unregisterCacheExtension(CacheExtension cacheExtension)
CacheExtension
with the cache. It will then be detached from the cache lifecycle.
unregisterCacheExtension
in interface Ehcache
public float getAverageGetTime()
getAverageGetTime
in interface Ehcache
public void setCacheExceptionHandler(CacheExceptionHandler cacheExceptionHandler)
ExceptionHandlingDynamicCacheProxy
.
setCacheExceptionHandler
in interface Ehcache
ExceptionHandlingDynamicCacheProxy
public CacheExceptionHandler getCacheExceptionHandler()
ExceptionHandlingDynamicCacheProxy
.
getCacheExceptionHandler
in interface Ehcache
ExceptionHandlingDynamicCacheProxy
public void registerCacheLoader(CacheLoader cacheLoader)
CacheLoader
with the cache. It will then be tied into the cache lifecycle.
If the CacheLoader is not initialised, initialise it.
registerCacheLoader
in interface Ehcache
cacheLoader
- A Cache Loader to registerpublic void unregisterCacheLoader(CacheLoader cacheLoader)
CacheLoader
with the cache. It will then be detached from the cache lifecycle.
unregisterCacheLoader
in interface Ehcache
cacheLoader
- A Cache Loader to unregisterpublic java.util.List<CacheLoader> getRegisteredCacheLoaders()
getRegisteredCacheLoaders
in interface Ehcache
public void registerCacheWriter(CacheWriter cacheWriter)
CacheWriter
for this cache. It will then be tied into the cache lifecycle.
If the CacheWriter
is not initialised, initialise it.
registerCacheWriter
in interface Ehcache
cacheWriter
- A CacheWriter to registerpublic void unregisterCacheWriter()
CacheWriter
from the cache. It will then be detached from the cache lifecycle.
If not CacheWriter
was registered beforehand this operation has no effect.
unregisterCacheWriter
in interface Ehcache
public CacheWriter getRegisteredCacheWriter()
CacheWriter
that was registered for this cache.
getRegisteredCacheWriter
in interface Ehcache
CacheWriter
; or null
if none was registered beforepublic boolean isDisabled()
setDisabled(boolean)
method.
By default caches are enabled on creation, unless the net.sf.ehcache.disabled
system
property is set.
isDisabled
in interface Ehcache
?
public void setDisabled(boolean disabled)
net.sf.ehcache.disabled
system property is set
setDisabled
in interface Ehcache
disabled
- true if you wish to disable, false to enableisDisabled()
public Policy getMemoryStoreEvictionPolicy()
public void setMemoryStoreEvictionPolicy(Policy policy)
policy
- the new policypublic LiveCacheStatistics getLiveCacheStatistics() throws java.lang.IllegalStateException
Ehcache.getStatistics()
in the way that values
returned from LiveCacheStatistics
will reflect the current state
of the cache (and not a snapshot of the cache when the api's were called
like Ehcache.getStatistics()
)
getLiveCacheStatistics
in interface Ehcache
LiveCacheStatistics
associated with this cache
java.lang.IllegalStateException
public void registerCacheUsageListener(CacheUsageListener cacheUsageListener) throws java.lang.IllegalStateException
CacheUsageListener
which will be notified of the
cache
usage.
Implementations of CacheUsageListener
should override the
Object.equals(Object)
and Object.hashCode()
methods as it is used for
equality check
registerCacheUsageListener
in interface Ehcache
java.lang.IllegalStateException
public void removeCacheUsageListener(CacheUsageListener cacheUsageListener) throws java.lang.IllegalStateException
CacheUsageListener
, if any.
Depends on the Object.equals(Object)
method.
removeCacheUsageListener
in interface Ehcache
java.lang.IllegalStateException
public boolean isStatisticsEnabled()
isStatisticsEnabled
in interface Ehcache
public void setStatisticsEnabled(boolean enableStatistics)
Ehcache.setSampledStatisticsEnabled(boolean)
with
parameter true.
Disabling statistics also disables the sampled statistics collection if
it is enabled
setStatisticsEnabled
in interface Ehcache
public SampledCacheStatistics getSampledCacheStatistics()
getSampledCacheStatistics
in interface Ehcache
public void setSampledStatisticsEnabled(boolean enableStatistics)
setSampledStatisticsEnabled
in interface Ehcache
public boolean isSampledStatisticsEnabled()
isSampledStatisticsEnabled
in interface Ehcache
Ehcache.isSampledStatisticsEnabled()
public java.lang.Object getInternalContext()
getInternalContext
in interface Ehcache
public void disableDynamicFeatures()
This is a one time operation. Once an Ehcache instance has had its dynamic operations disabled they cannot be re-enabled.
disableDynamicFeatures
in interface Ehcache
public boolean isClusterCoherent()
isClusterCoherent
in interface Ehcache
public boolean isNodeCoherent()
isNodeCoherent
in interface Ehcache
public void setNodeCoherent(boolean coherent)
setNodeCoherent(true)
when the cache is already in coherent mode or
calling setNodeCoherent(false)
when already in incoherent mode will be a no-op.
It applies to coherent clustering mechanisms only e.g. Terracotta
setNodeCoherent
in interface Ehcache
coherent
- true transitions to coherent mode, false to incoherent modepublic void waitUntilClusterCoherent()
waitUntilClusterCoherent
in interface Ehcache
|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |