org.castor.cache.distributed
public final class EHCache extends AbstractBaseCache
Since: 1.0
Version: $Revision: 6320 $ $Date: 2006-04-26 00:09:10 +0200 (Mi, 26 Apr 2006) $
See Also: the EHCache Home Page
Field Summary | |
---|---|
static String | IMPLEMENTATION The classname of the implementations factory class. |
static String | TYPE The type of the cache. |
Method Summary | |
---|---|
void | clear() |
boolean | containsKey(Object key) |
boolean | containsValue(Object value) |
Set | entrySet() |
Object | get(Object key) |
String | getType() |
void | initialize(Properties params) |
void | initialize(String implementation, Properties params)
Normally called to initialize FKCache. |
boolean | isEmpty() |
Set | keySet() |
Object | put(Object key, Object value) |
void | putAll(Map map) |
Object | remove(Object key) |
void | shutdown(String implementation)
Normally called to shutdown CoherenceCache. |
int | size() |
Collection | values() |
See Also: java.util.Map#clear()
See Also: java.util.Map#containsKey(java.lang.Object)
See Also: java.util.Map#containsValue(java.lang.Object)
See Also: java.util.Map#entrySet()
See Also: java.util.Map#get(java.lang.Object)
See Also: getType
See Also: initialize
javax.util.jcache.CacheAccessFactory
implementation, it
can also be called with a test implementations classname.
Parameters: implementation Cache implementation classname to initialize. params Parameters to initialize the cache (e.g. name, capacity).
Throws: CacheAcquireException If cache can not be initialized.
See Also: java.util.Map#isEmpty()
See Also: java.util.Map#keySet()
See Also: java.util.Map#put(java.lang.Object, java.lang.Object)
See Also: java.util.Map#putAll(java.util.Map)
See Also: java.util.Map#remove(java.lang.Object)
com.tangosol.net.CacheFactory
implementation,
it can also be called with a test implementations classname.
Parameters: implementation Cache implementation classname to shutdown.
See Also: java.util.Map#size()
See Also: java.util.Map#values()