|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.infinispan.loaders.AbstractCacheLoader
org.infinispan.loaders.AbstractCacheStore
org.infinispan.loaders.remote.RemoteCacheStore
@ThreadSafe public class RemoteCacheStore
Cache store that delegates the call to a infinispan cluster. Communication between this cache store and the remote cluster is achieved through the java HotRod client: this assures fault tolerance and smart dispatching of calls to the nodes that have the highest chance of containing the given key. This cache store supports both preloading and fetchPersistentState.
Purging elements is not possible, as HotRod does not support the fetching of all remote keys (this would be a very costly operation as well). Purging takes place at the remote end (infinispan cluster).
RemoteCacheStoreConfig,
Hotrod Java Client| Field Summary |
|---|
| Fields inherited from class org.infinispan.loaders.AbstractCacheStore |
|---|
multiThreadedPurge, purgerService |
| Fields inherited from class org.infinispan.loaders.AbstractCacheLoader |
|---|
cache, marshaller |
| Constructor Summary | |
|---|---|
RemoteCacheStore()
|
|
| Method Summary | |
|---|---|
void |
clear()
Clears all entries in the store |
boolean |
containsKey(Object key)
This implementation delegates to CacheLoader.load(Object), to ensure that a response is
returned only if the entry is not expired. |
void |
fromStream(ObjectInput inputStream)
Writes contents of the stream to the store. |
Class<? extends CacheLoaderConfig> |
getConfigurationClass()
This method is used by the configuration parser to get a hold of the CacheLoader implementation's corresponding CacheLoaderConfig type. |
void |
init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
Used to initialize a cache loader. |
Set<InternalCacheEntry> |
load(int numEntries)
Loads up to a specific number of entries. |
InternalCacheEntry |
load(Object key)
Loads an entry mapped to by a given key. |
Set<InternalCacheEntry> |
loadAll()
Loads all entries in the loader. |
Set<Object> |
loadAllKeys(Set<Object> keysToExclude)
Loads a set of all keys, excluding a filter set. |
protected void |
purgeInternal()
|
boolean |
remove(Object key)
Removes an entry in the store. |
void |
start()
|
void |
stop()
|
void |
store(InternalCacheEntry entry)
Stores an entry |
void |
toStream(ObjectOutput outputStream)
Loads the entire state into a stream, using whichever format is most efficient for the cache loader implementation. |
| Methods inherited from class org.infinispan.loaders.AbstractCacheStore |
|---|
applyModifications, commit, getCacheStoreConfig, getConcurrencyLevel, getMarshaller, prepare, purgeExpired, removeAll, rollback, safeClose, safeClose, supportsMultiThreadedPurge |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public RemoteCacheStore()
| Method Detail |
|---|
public InternalCacheEntry load(Object key)
throws CacheLoaderException
CacheLoader
key - key
CacheLoaderException - in the event of problems reading from source
protected void purgeInternal()
throws CacheLoaderException
purgeInternal in class AbstractCacheStoreCacheLoaderException
public boolean containsKey(Object key)
throws CacheLoaderException
AbstractCacheLoaderCacheLoader.load(Object), to ensure that a response is
returned only if the entry is not expired.
containsKey in interface CacheLoadercontainsKey in class AbstractCacheLoaderkey - key to test
CacheLoaderException - in the event of problems reading from source
public void store(InternalCacheEntry entry)
throws CacheLoaderException
CacheStore
entry - entry to store
CacheLoaderException - in the event of problems writing to the store
public void fromStream(ObjectInput inputStream)
throws CacheLoaderException
CacheStoreCacheStore.toStream(java.io.ObjectOutput). While not a
requirement, it is recommended that implementations make use of the StreamingMarshaller
when dealing with the stream to make use of efficient marshalling.
It is imperative that implementations do not close the stream after finishing with it.
It is also recommended that implementations use their own start and end markers on the stream since
other processes may write additional data to the stream after the cache store has written to it. As such, either
markers or some other mechanism to prevent the store from reading too much information should be employed when
writing to the stream in CacheStore.fromStream(java.io.ObjectInput) to prevent data corruption.
It can be assumed that the stream passed in already performs buffering such that the cache store implementation
doesn't have to.
inputStream - stream to read from
CacheLoaderException - in the event of problems writing to the store
public void toStream(ObjectOutput outputStream)
throws CacheLoaderException
CacheStoreCacheStore.fromStream(java.io.ObjectInput).
While not a requirement, it is recommended that implementations make use of the StreamingMarshaller when dealing with the stream to make use of efficient marshalling.
It is imperative that implementations do not flush or close the stream after finishing with it.
It is also recommended that implementations use their own start and end markers on the stream since
other processes may write additional data to the stream after the cache store has written to it. As such, either
markers or some other mechanism to prevent the store from reading too much information in CacheStore.fromStream(java.io.ObjectInput) should be employed, to prevent data corruption.
It can be assumed that the stream passed in already performs buffering such that the cache store implementation
doesn't have to.
outputStream - stream to write to
CacheLoaderException - in the event of problems reading from the store
public void clear()
throws CacheLoaderException
CacheStore
CacheLoaderException - in the event of problems writing to the store
public boolean remove(Object key)
throws CacheLoaderException
CacheStore
key - key to remove
CacheLoaderException - in the event of problems writing to the store
public Set<InternalCacheEntry> loadAll()
throws CacheLoaderException
CacheLoader
CacheLoaderException - in the event of problems reading from source
public Set<InternalCacheEntry> load(int numEntries)
throws CacheLoaderException
CacheLoader
numEntries - maximum number of entries to load
CacheLoaderException
public Set<Object> loadAllKeys(Set<Object> keysToExclude)
throws CacheLoaderException
CacheLoader
keysToExclude - a set of keys to exclude. An empty set or null will indicate that all keys should be returned.
CacheLoaderException
public void init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
throws CacheLoaderException
CacheLoaderCacheLoaderManager
when setting up cache loaders.
init in interface CacheLoaderinit in class AbstractCacheStoreconfig - the cache loader configuration beancache - cache associated with this cache loader. Implementations may use this to determine cache name when
selecting where refer to state in storage, for example, a different database table name.m - marshaller to use when loading state from a stream, if supported by the implementation.
CacheLoaderException
public void start()
throws CacheLoaderException
start in interface CacheLoaderstart in class AbstractCacheStoreCacheLoaderException
public void stop()
throws CacheLoaderException
stop in interface CacheLoaderstop in class AbstractCacheStoreCacheLoaderExceptionpublic Class<? extends CacheLoaderConfig> getConfigurationClass()
CacheLoaderCacheLoaderConfig type. This is usually done by instantiating the CacheLoader
and then calling this method. This may result in 2 instances being created, however, since the instance
created to get a hold of the configuration type is then discarded and another instance is created for actual
use as a CacheLoader when the cache starts.
Since Infinispan 4.1, you can also annotate your CacheLoader implementation with CacheLoaderMetadata
and provide this information via the annotation, which will prevent unnecessary instances being created.
CacheLoaderConfig bean used to configure this
implementation of CacheLoader.
|
Google Analytics | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||