|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface RemoteCache<K,V>
Provides remote reference to a Hot Rod server/cluster. It implements Cache
, but given its
nature (remote) some operations are not supported. All these unsupported operations are being overridden within this
interface and documented as such.
Cache
, RemoteCache also adds new
operations to optimize/reduce network traffic: e.g. versioned put operation.
Concurrency: implementors of this interface will support multi-threaded access, similar to the way Cache
supports it.
Return values: previously existing values for certain Map
operations are not returned, null
is returned instead. E.g. Map.put(Object, Object)
returns the previous value associated to the
supplied key. In case of RemoteCache, this returns null.
Synthetic operations: aggregate operations are being implemented based on other Hot Rod operations. E.g. all
the Map.putAll(java.util.Map)
is implemented through multiple individual puts. This means that the
these operations are not atomic and that they are costly, e.g. as the number of network round-trips is not one, but
the size of the added map. All these synthetic operations are documented as such.
changing default behavior through Flag
s: it is possible to change the
default cache behaviour by using flags on an per invocation basis. E.g.
RemoteCache cache = getRemoteCache(); Object oldValue = cache.withFlags(Flag.FORCE_RETURN_VALUE).put(aKey, aValue);In the previous example, using
Flag.FORCE_RETURN_VALUE
will make the client to
also return previously existing value associated with aKey. If this flag would not be present, Infinispan
would return (by default) null. This is in order to avoid fetching a possibly large object from the remote
server, which might not be needed. The flags as set by the withFlags(Flag...)
operation only apply for the very next operation executed by the same thread on the RemoteCache.
Eviction and expiration: Unlike local Cache
cache, which allows specifying time values with any granularity (as defined by TimeUnit
), HotRod only supports seconds as time units. If a different time unit is used instead, HotRod will
transparently convert it to seconds, using TimeUnit.toSeconds(long)
method. This might
result in loss of precision for values specified as nanos or milliseconds.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface java.util.Map |
---|
Map.Entry<K,V> |
Method Summary | |
---|---|
boolean |
containsValue(Object value)
|
Set<Map.Entry<K,V>> |
entrySet()
|
Map<K,V> |
getBulk()
Bulk get operations, returns all the entries within the remote cache. |
Map<K,V> |
getBulk(int size)
Same as getBulk() , but limits the returned set of values to the specified size. |
RemoteCacheManager |
getRemoteCacheManager()
Returns the RemoteCacheManager that created this cache. |
VersionedValue |
getVersioned(K key)
Returns the VersionedValue associated to the supplied key param, or null if it doesn't exist. |
boolean |
isEmpty()
|
Set<K> |
keySet()
|
void |
putAll(Map<? extends K,? extends V> m)
Synthetic operation. |
void |
putAll(Map<? extends K,? extends V> map,
long lifespan,
TimeUnit unit)
Synthetic operation. |
void |
putAll(Map<? extends K,? extends V> map,
long lifespan,
TimeUnit lifespanUnit,
long maxIdleTime,
TimeUnit maxIdleTimeUnit)
Synthetic operation. |
NotifyingFuture<Void> |
putAllAsync(Map<? extends K,? extends V> data)
Synthetic operation. |
NotifyingFuture<Void> |
putAllAsync(Map<? extends K,? extends V> data,
long lifespan,
TimeUnit unit)
Synthetic operation. |
NotifyingFuture<Void> |
putAllAsync(Map<? extends K,? extends V> data,
long lifespan,
TimeUnit lifespanUnit,
long maxIdle,
TimeUnit maxIdleUnit)
Synthetic operation. |
boolean |
remove(Object key,
Object value)
This operation is not supported. |
NotifyingFuture<Boolean> |
removeAsync(Object key,
Object value)
This operation is not supported. |
boolean |
removeWithVersion(K key,
long version)
Removes the given entry only if its version matches the supplied version. |
NotifyingFuture<Boolean> |
removeWithVersionAsync(K key,
long version)
|
boolean |
replace(K key,
V oldValue,
V newValue)
This operation is not supported. |
boolean |
replace(K key,
V oldValue,
V value,
long lifespan,
TimeUnit unit)
This operation is not supported. |
boolean |
replace(K key,
V oldValue,
V value,
long lifespan,
TimeUnit lifespanUnit,
long maxIdleTime,
TimeUnit maxIdleTimeUnit)
This operation is not supported. |
NotifyingFuture<Boolean> |
replaceAsync(K key,
V oldValue,
V newValue)
This operation is not supported. |
NotifyingFuture<Boolean> |
replaceAsync(K key,
V oldValue,
V newValue,
long lifespan,
TimeUnit unit)
This operation is not supported. |
NotifyingFuture<Boolean> |
replaceAsync(K key,
V oldValue,
V newValue,
long lifespan,
TimeUnit lifespanUnit,
long maxIdle,
TimeUnit maxIdleUnit)
This operation is not supported. |
boolean |
replaceWithVersion(K key,
V newValue,
long version)
Replaces the given value only if its version matches the supplied version. |
boolean |
replaceWithVersion(K key,
V newValue,
long version,
int lifespanSeconds)
A overloaded form of replaceWithVersion(Object, Object, long)
which takes in lifespan parameters. |
boolean |
replaceWithVersion(K key,
V newValue,
long version,
int lifespanSeconds,
int maxIdleTimeSeconds)
A overloaded form of replaceWithVersion(Object, Object, long)
which takes in lifespan and maximum idle time parameters. |
NotifyingFuture<Boolean> |
replaceWithVersionAsync(K key,
V newValue,
long version)
|
NotifyingFuture<Boolean> |
replaceWithVersionAsync(K key,
V newValue,
long version,
int lifespanSeconds)
|
NotifyingFuture<Boolean> |
replaceWithVersionAsync(K key,
V newValue,
long version,
int lifespanSeconds,
int maxIdleSeconds)
|
int |
size()
|
ServerStatistics |
stats()
|
Collection<V> |
values()
|
RemoteCache<K,V> |
withFlags(Flag... flags)
Applies one or more Flag s to the scope of a single invocation. |
Methods inherited from interface org.infinispan.api.BasicCache |
---|
clearAsync, getAsync, getName, getVersion, put, put, putAsync, putAsync, putAsync, putIfAbsent, putIfAbsent, putIfAbsentAsync, putIfAbsentAsync, putIfAbsentAsync, removeAsync, replace, replace, replaceAsync, replaceAsync, replaceAsync |
Methods inherited from interface java.util.concurrent.ConcurrentMap |
---|
putIfAbsent, replace |
Methods inherited from interface java.util.Map |
---|
clear, containsKey, equals, get, hashCode, put, remove |
Methods inherited from interface org.infinispan.lifecycle.Lifecycle |
---|
start, stop |
Method Detail |
---|
boolean removeWithVersion(K key, long version)
VersionedEntry ve = remoteCache.getVersioned(key); //some processing remoteCache.removeWithVersion(key, ve.getVersion();Lat call (removeWithVersion) will make sure that the entry will only be removed if it hasn't been changed in between.
VersionedValue
,
getVersioned(Object)
NotifyingFuture<Boolean> removeWithVersionAsync(K key, long version)
remove(Object, Object)
boolean replaceWithVersion(K key, V newValue, long version)
removeWithVersion(Object, long)
for a sample usage of the
version-based methods.
version
- numeric version that should match the one in the server
for the operation to succeed
getVersioned(Object)
,
VersionedValue
boolean replaceWithVersion(K key, V newValue, long version, int lifespanSeconds)
replaceWithVersion(Object, Object, long)
which takes in lifespan parameters.
key
- key to usenewValue
- new value to be associated with the keyversion
- numeric version that should match the one in the server
for the operation to succeedlifespanSeconds
- lifespan of the entry
boolean replaceWithVersion(K key, V newValue, long version, int lifespanSeconds, int maxIdleTimeSeconds)
replaceWithVersion(Object, Object, long)
which takes in lifespan and maximum idle time parameters.
key
- key to usenewValue
- new value to be associated with the keyversion
- numeric version that should match the one in the server
for the operation to succeedlifespanSeconds
- lifespan of the entrymaxIdleTimeSeconds
- the maximum amount of time this key is allowed
to be idle for before it is considered as expired
NotifyingFuture<Boolean> replaceWithVersionAsync(K key, V newValue, long version)
replaceWithVersion(Object, Object, long)
NotifyingFuture<Boolean> replaceWithVersionAsync(K key, V newValue, long version, int lifespanSeconds)
replaceWithVersion(Object, Object, long)
NotifyingFuture<Boolean> replaceWithVersionAsync(K key, V newValue, long version, int lifespanSeconds, int maxIdleSeconds)
replaceWithVersion(Object, Object, long)
VersionedValue getVersioned(K key)
VersionedValue
associated to the supplied key param, or null if it doesn't exist.
int size()
size
in interface Map<K,V>
UnsupportedOperationException
boolean isEmpty()
isEmpty
in interface Map<K,V>
UnsupportedOperationException
boolean containsValue(Object value)
containsValue
in interface Map<K,V>
UnsupportedOperationException
Set<K> keySet()
keySet
in interface Map<K,V>
UnsupportedOperationException
Collection<V> values()
values
in interface Map<K,V>
UnsupportedOperationException
Set<Map.Entry<K,V>> entrySet()
entrySet
in interface Map<K,V>
UnsupportedOperationException
boolean remove(Object key, Object value)
removeWithVersion(Object, long)
instead.
remove
in interface ConcurrentMap<K,V>
UnsupportedOperationException
NotifyingFuture<Boolean> removeAsync(Object key, Object value)
removeWithVersionAsync(Object, long)
instead.
removeAsync
in interface BasicCache<K,V>
key
- key to removevalue
- value to match on
UnsupportedOperationException
boolean replace(K key, V oldValue, V newValue)
replaceWithVersion(Object, Object, long)
instead.
replace
in interface ConcurrentMap<K,V>
UnsupportedOperationException
boolean replace(K key, V oldValue, V value, long lifespan, TimeUnit unit)
replaceWithVersion(Object, Object, long, int)
instead.
replace
in interface BasicCache<K,V>
key
- key to useoldValue
- value to replacevalue
- value to storelifespan
- lifespan of the entry. Negative values are interpreted as unlimited lifespan.unit
- unit of measurement for the lifespan
UnsupportedOperationException
boolean replace(K key, V oldValue, V value, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit)
replaceWithVersion(Object, Object, long, int, int)
instead.
replace
in interface BasicCache<K,V>
key
- key to useoldValue
- value to replacevalue
- value to storelifespan
- lifespan of the entry. Negative values are interpreted as unlimited lifespan.lifespanUnit
- time unit for lifespanmaxIdleTime
- the maximum amount of time this key is allowed to be idle for before it is considered as
expiredmaxIdleTimeUnit
- time unit for max idle time
UnsupportedOperationException
NotifyingFuture<Boolean> replaceAsync(K key, V oldValue, V newValue)
replaceWithVersionAsync(Object, Object, long)
instead.
replaceAsync
in interface BasicCache<K,V>
key
- key to removeoldValue
- value to overwritenewValue
- value to store
UnsupportedOperationException
NotifyingFuture<Boolean> replaceAsync(K key, V oldValue, V newValue, long lifespan, TimeUnit unit)
replaceWithVersion(Object, Object, long, int)
instead.
replaceAsync
in interface BasicCache<K,V>
key
- key to removeoldValue
- value to overwritenewValue
- value to storelifespan
- lifespan of entryunit
- time unit for lifespan
UnsupportedOperationException
NotifyingFuture<Boolean> replaceAsync(K key, V oldValue, V newValue, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit)
replaceWithVersion(Object, Object, long, int, int)
instead.
replaceAsync
in interface BasicCache<K,V>
key
- key to removeoldValue
- value to overwritenewValue
- value to storelifespan
- lifespan of entrylifespanUnit
- time unit for lifespanmaxIdle
- the maximum amount of time this key is allowed to be idle for before it is considered as
expiredmaxIdleUnit
- time unit for max idle time
UnsupportedOperationException
void putAll(Map<? extends K,? extends V> map, long lifespan, TimeUnit unit)
putAll
in interface BasicCache<K,V>
map
- map containing mappings to enterlifespan
- lifespan of the entry. Negative values are interpreted as unlimited lifespan.unit
- unit of measurement for the lifespanvoid putAll(Map<? extends K,? extends V> map, long lifespan, TimeUnit lifespanUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit)
putAll
in interface BasicCache<K,V>
map
- map containing mappings to enterlifespan
- lifespan of the entry. Negative values are interpreted as unlimited lifespan.lifespanUnit
- time unit for lifespanmaxIdleTime
- the maximum amount of time this key is allowed to be idle for before it is considered as
expiredmaxIdleTimeUnit
- time unit for max idle timeputAll(java.util.Map, long, java.util.concurrent.TimeUnit)
NotifyingFuture<Void> putAllAsync(Map<? extends K,? extends V> data)
putAllAsync
in interface BasicCache<K,V>
data
- to store
putAll(java.util.Map, long, java.util.concurrent.TimeUnit)
NotifyingFuture<Void> putAllAsync(Map<? extends K,? extends V> data, long lifespan, TimeUnit unit)
putAllAsync
in interface BasicCache<K,V>
data
- to storelifespan
- lifespan of entryunit
- time unit for lifespan
putAll(java.util.Map, long, java.util.concurrent.TimeUnit)
NotifyingFuture<Void> putAllAsync(Map<? extends K,? extends V> data, long lifespan, TimeUnit lifespanUnit, long maxIdle, TimeUnit maxIdleUnit)
putAllAsync
in interface BasicCache<K,V>
data
- to storelifespan
- lifespan of entrylifespanUnit
- time unit for lifespanmaxIdle
- the maximum amount of time this key is allowed to be idle for before it is considered as
expiredmaxIdleUnit
- time unit for max idle time
putAll(java.util.Map, long, java.util.concurrent.TimeUnit)
void putAll(Map<? extends K,? extends V> m)
putAll
in interface Map<K,V>
putAll(java.util.Map, long, java.util.concurrent.TimeUnit)
ServerStatistics stats()
RemoteCache<K,V> withFlags(Flag... flags)
Flag
s to the scope of a single invocation. See the Flag
enumeration to for
information on available flags.
Sample usage:
remoteCache.withFlags(Flag.FORCE_RETURN_VALUE).put("hello", "world");
flags
-
RemoteCacheManager getRemoteCacheManager()
RemoteCacheManager
that created this cache.
Map<K,V> getBulk()
Map<K,V> getBulk(int size)
getBulk()
, but limits the returned set of values to the specified size. No ordering is guaranteed, and there is no
guarantee that "size" elements are returned( e.g. if the number of elements in the back-end server is smaller that "size")
|
--> | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |