|
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.readthrough.ReadThroughCache
public class ReadThroughCache
This class implements the simplest of all possible read through cache
behaviors, where a call the get() will delegate to a call to getWithLoader().
This means that a get() call can take a long time; beware. It also does no more
locking than Cache.java
implements; each separate cache may try to load
a key at the same time.
Field Summary |
---|
Fields inherited from class net.sf.ehcache.constructs.EhcacheDecoratorAdapter |
---|
underlyingCache |
Constructor Summary | |
---|---|
ReadThroughCache(Ehcache underlyingCache,
ReadThroughCacheConfiguration config)
|
Method Summary | |
---|---|
Element |
get(Object key)
Gets an element from the cache. |
Element |
get(Serializable key)
Gets an element from the cache. |
String |
getName()
Gets the cache name. |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ReadThroughCache(Ehcache underlyingCache, ReadThroughCacheConfiguration config)
underlyingCache
- config
- Method Detail |
---|
public Element get(Object key) throws IllegalStateException, CacheException
EhcacheDecoratorAdapter
Note that the Element's lastAccessTime is always the time of this get.
Use Ehcache.getQuiet(Object)
to peek into the Element to see its last access time with get
get
in interface Ehcache
get
in class EhcacheDecoratorAdapter
key
- an Object value
IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
Ehcache.isExpired(net.sf.ehcache.Element)
public Element get(Serializable key) throws IllegalStateException, CacheException
EhcacheDecoratorAdapter
Note that the Element's lastAccessTime is always the time of this get.
Use Ehcache.getQuiet(Object)
to peak into the Element to see its last access time with get
get
in interface Ehcache
get
in class EhcacheDecoratorAdapter
key
- a serializable value
IllegalStateException
- if the cache is not Status.STATUS_ALIVE
CacheException
Ehcache.isExpired(net.sf.ehcache.Element)
public String getName()
EhcacheDecoratorAdapter
getName
in interface Ehcache
getName
in class EhcacheDecoratorAdapter
|
ehcache | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |