|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Ehcache
An interface for Ehcache.
Ehcache is the central interface. Caches haveElement
s and are managed
by the CacheManager
. The Cache performs logical actions. It delegates physical
implementations to its Store
s.
A reference to an EhCache can be obtained through the CacheManager
. An Ehcache 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.
Statistics on cache usage are collected and made available through public methods.
Method Summary | |
---|---|
void |
bootstrap()
Bootstrap command. |
long |
calculateInMemorySize()
Gets the size of the memory store for this cache Warning: This method can be very expensive to run. |
void |
clearStatistics()
Resets statistics counters back to 0. |
java.lang.Object |
clone()
Clones a cache. |
void |
dispose()
Flushes all cache items from memory to auxilliary caches and close the auxilliary caches. |
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)
Warning: This method is related to the JSR107 specification, which is in draft. |
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()
Sets an ExceptionHandler on the Cache. |
CacheLoader |
getCacheLoader()
Gets the CacheLoader registered in this cache |
CacheManager |
getCacheManager()
Gets the CacheManager managing this cache. |
long |
getDiskExpiryThreadIntervalSeconds()
|
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.util.List |
getKeys()
Returns a list of all elements 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 elements in the cache. |
int |
getMaxElementsInMemory()
Gets the maximum number of elements to hold in memory. |
int |
getMaxElementsOnDisk()
Gets the maximum number of elements to hold on Disk. |
MemoryStoreEvictionPolicy |
getMemoryStoreEvictionPolicy()
The policy used to evict elements from the MemoryStore . |
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. |
int |
getSize()
Gets the size of the cache. |
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. |
long |
getTimeToIdleSeconds()
Gets timeToIdleSeconds. |
long |
getTimeToLiveSeconds()
Gets timeToLiveSeconds. |
Element |
getWithLoader(java.lang.Object key,
CacheLoader loader,
java.lang.Object loaderArgument)
Warning: This method is related to the JSR107 specification, which is in draft. |
void |
initialise()
Newly created caches do not have a MemoryStore or a DiskStore . |
boolean |
isDisabled()
Whether this cache is disabled. |
boolean |
isDiskPersistent()
|
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 |
isEternal()
Are elements eternal. |
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 |
isOverflowToDisk()
Does the overflow go to disk. |
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)
Warning: This method is related to the JSR107 specification, which is in draft. |
void |
loadAll(java.util.Collection keys,
java.lang.Object argument)
Warning: This method is related to the JSR107 specification, which is in draft. |
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 |
registerCacheExtension(CacheExtension cacheExtension)
Register a CacheExtension with the 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. |
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. |
void |
setBootstrapCacheLoader(BootstrapCacheLoader bootstrapCacheLoader)
Sets the bootstrap cache loader. |
void |
setCacheExceptionHandler(CacheExceptionHandler cacheExceptionHandler)
Sets an ExceptionHandler on the Cache. |
void |
setCacheLoader(CacheLoader cacheLoader)
Setter for the CacheLoader. |
void |
setCacheManager(CacheManager cacheManager)
Sets the CacheManager |
void |
setDisabled(boolean disabled)
Disables or enables this cache. |
void |
setDiskStorePath(java.lang.String diskStorePath)
DiskStore paths can conflict between CacheManager instances. |
void |
setName(java.lang.String name)
Sets the cache name which will name. |
void |
setStatisticsAccuracy(int statisticsAccuracy)
Sets the statistics accuracy. |
java.lang.String |
toString()
Returns a String representation of Cache . |
void |
unregisterCacheExtension(CacheExtension cacheExtension)
Unregister a CacheExtension with the cache. |
Method Detail |
---|
void put(Element element) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException, CacheException
element
- An object. If Serializable it can fully participate in replication and the DiskStore.
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
java.lang.IllegalArgumentException
- if the element is null
CacheException
void put(Element element, boolean doNotNotifyCacheReplicators) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException, CacheException
element
- An object. If Serializable it can fully participate in replication and the DiskStore.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
void putQuiet(Element element) throws java.lang.IllegalArgumentException, java.lang.IllegalStateException, CacheException
getQuiet(java.io.Serializable)
element
- An object. If Serializable it can fully participate in replication and the DiskStore.
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
java.lang.IllegalArgumentException
- if the element is null
CacheException
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
key
- a serializable value
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
isExpired(net.sf.ehcache.Element)
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
key
- an Object value
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
isExpired(net.sf.ehcache.Element)
Element getQuiet(java.io.Serializable key) throws java.lang.IllegalStateException, CacheException
key
- a serializable value
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
isExpired(net.sf.ehcache.Element)
Element getQuiet(java.lang.Object key) throws java.lang.IllegalStateException, CacheException
key
- a serializable value
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
isExpired(net.sf.ehcache.Element)
java.util.List getKeys() throws java.lang.IllegalStateException, CacheException
Object
keys
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
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.
Object
keys
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
java.util.List getKeysNoDuplicateCheck() throws java.lang.IllegalStateException
Object
keys
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
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.
key
-
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
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.
key
-
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
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.
key
- 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
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.
key
- 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
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.
key
-
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
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.
key
-
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
void removeAll() throws java.lang.IllegalStateException, CacheException
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
void removeAll(boolean doNotNotifyCacheReplicators) throws java.lang.IllegalStateException, CacheException
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
void flush() throws java.lang.IllegalStateException, CacheException
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
int getSize() throws java.lang.IllegalStateException, CacheException
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.
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.
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
long calculateInMemorySize() throws java.lang.IllegalStateException, CacheException
java.lang.IllegalStateException
CacheException
long getMemoryStoreSize() throws java.lang.IllegalStateException
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
int getDiskStoreSize() throws java.lang.IllegalStateException
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
Status getStatus()
java.lang.String getName()
void setName(java.lang.String name)
name
- the name of the cache. Should not be null.long getTimeToIdleSeconds()
long getTimeToLiveSeconds()
boolean isEternal()
boolean isOverflowToDisk()
int getMaxElementsInMemory()
int getMaxElementsOnDisk()
MemoryStoreEvictionPolicy getMemoryStoreEvictionPolicy()
MemoryStore
.
This can be one of:
java.lang.String toString()
String
representation of Cache
.
toString
in class java.lang.Object
boolean isExpired(Element element) throws java.lang.IllegalStateException, java.lang.NullPointerException
element
- the element to check
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
java.lang.NullPointerException
- if the element is nulljava.lang.Object clone() throws java.lang.CloneNotSupportedException
MemoryStore
or DiskStore
has been created.
A new, empty, RegisteredEventListeners is created on clone.
Cache
java.lang.CloneNotSupportedException
boolean isDiskPersistent()
long getDiskExpiryThreadIntervalSeconds()
RegisteredEventListeners getCacheEventNotificationService()
boolean isElementInMemory(java.io.Serializable key)
boolean isElementInMemory(java.lang.Object key)
boolean isElementOnDisk(java.io.Serializable key)
boolean isElementOnDisk(java.lang.Object key)
java.lang.String getGuid()
CacheManager getCacheManager()
void clearStatistics()
int getStatisticsAccuracy()
Statistics.STATISTICS_ACCURACY_BEST_EFFORT
, Statistics.STATISTICS_ACCURACY_GUARANTEED
, Statistics.STATISTICS_ACCURACY_NONE
void setStatisticsAccuracy(int statisticsAccuracy)
statisticsAccuracy
- one of Statistics.STATISTICS_ACCURACY_BEST_EFFORT
, Statistics.STATISTICS_ACCURACY_GUARANTEED
, Statistics.STATISTICS_ACCURACY_NONE
void evictExpiredElements()
boolean isKeyInCache(java.lang.Object key)
key
- the key to check for
boolean isValueInCache(java.lang.Object value)
value
- to check for
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.
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
void setCacheManager(CacheManager cacheManager)
cacheManager
- the CacheManager for this cache to use.BootstrapCacheLoader getBootstrapCacheLoader()
void setBootstrapCacheLoader(BootstrapCacheLoader bootstrapCacheLoader) throws CacheException
bootstrapCacheLoader
- the loader to be used
CacheException
- if this method is called after the cache is initializedvoid setDiskStorePath(java.lang.String diskStorePath) throws CacheException
diskStorePath
- the new path to be used.
CacheException
- if this method is called after the cache is initializedvoid initialise()
MemoryStore
or a DiskStore
.
This method creates those and makes the cache ready to accept elements
void bootstrap()
void dispose() throws java.lang.IllegalStateException
java.lang.IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheConfiguration getCacheConfiguration()
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.
void unregisterCacheExtension(CacheExtension cacheExtension)
CacheExtension
with the cache. It will then be detached from the cache lifecycle.
float getAverageGetTime()
void setCacheExceptionHandler(CacheExceptionHandler cacheExceptionHandler)
CacheExceptionHandler getCacheExceptionHandler()
void setCacheLoader(CacheLoader cacheLoader)
cacheLoader
- the loader to dynamically load new cache entriesCacheLoader getCacheLoader()
Element getWithLoader(java.lang.Object key, CacheLoader loader, java.lang.Object loaderArgument) throws CacheException
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
java.util.Map getAllWithLoader(java.util.Collection keys, java.lang.Object loaderArgument) throws CacheException
SelfPopulatingCache
keys
- a collection of keys to be returned/loadedloaderArgument
- an argument to pass to the CacheLoader.
CacheException
void load(java.lang.Object key) throws CacheException
SelfPopulatingCache
key
- key whose associated value to be loaded using the associated cacheloader if this cache doesn't contain it.
CacheException
void loadAll(java.util.Collection keys, java.lang.Object argument) throws CacheException
SelfPopulatingCache
CacheException
boolean isDisabled()
setDisabled(boolean)
method.
void setDisabled(boolean disabled)
disabled
- true if you wish to disable, false to enableisDisabled()
|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |