|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.ehcache.constructs.EhcacheDecoratorAdapter
net.sf.ehcache.constructs.blocking.BlockingCache
net.sf.ehcache.constructs.blocking.SelfPopulatingCache
net.sf.ehcache.constructs.blocking.UpdatingSelfPopulatingCache
public class UpdatingSelfPopulatingCache
A Cache
backed cache that creates entries on demand.
Clients of the cache simply call it without needing knowledge of whether the entry exists in the cache, or whether it needs updating before use.
Thread safety depends on the factory being used. The UpdatingCacheEntryFactory should be made thread safe. In addition users of returned values should not modify their contents.
Field Summary |
---|
Fields inherited from class net.sf.ehcache.constructs.blocking.SelfPopulatingCache |
---|
factory |
Fields inherited from class net.sf.ehcache.constructs.blocking.BlockingCache |
---|
timeoutMillis |
Fields inherited from class net.sf.ehcache.constructs.EhcacheDecoratorAdapter |
---|
underlyingCache |
Constructor Summary | |
---|---|
UpdatingSelfPopulatingCache(Ehcache cache,
UpdatingCacheEntryFactory factory)
Creates a SelfPopulatingCache. |
Method Summary | |
---|---|
Element |
get(Object key)
Looks up an object. |
void |
refresh()
This method should not be used. |
protected void |
update(Object key)
Element can never be null. |
Methods inherited from class net.sf.ehcache.constructs.blocking.SelfPopulatingCache |
---|
makeAndCheckElement, refresh, refresh, refresh, refreshElement, refreshElement |
Methods inherited from class net.sf.ehcache.constructs.blocking.BlockingCache |
---|
get, getAllWithLoader, getCache, getLockForKey, getTimeoutMillis, getWithLoader, liveness, load, loadAll, put, put, putIfAbsent, putIfAbsent, putQuiet, putWithWriter, registerCacheLoader, setTimeoutMillis, unregisterCacheLoader |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public UpdatingSelfPopulatingCache(Ehcache cache, UpdatingCacheEntryFactory factory) throws CacheException
CacheException
Method Detail |
---|
public Element get(Object key) throws LockTimeoutException
If null, it creates it. If not null, it updates it. For performance this method should only be
used with UpdatingCacheEntryFactory
's
It is expected that gets, which update as part of the get, might take considerable time. Access to the cache cannot be blocked while that is happening. This method is therefore not synchronized. Sync's are used for thread safety based on key
get
in interface Ehcache
get
in class SelfPopulatingCache
key
-
CacheException
LockTimeoutException
- if timeout millis is non zero and this method has been unable to
acquire a lock in that timeEhcache.isExpired(net.sf.ehcache.Element)
protected void update(Object key)
key
- public void refresh() throws CacheException
refresh
in class SelfPopulatingCache
CacheException
|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |