public class RedissonLocalCachedMap<K,V> extends RedissonMap<K,V> implements RLocalCachedMap<K,V>
Modifier and Type | Class and Description |
---|---|
static class |
RedissonLocalCachedMap.CacheKey |
static class |
RedissonLocalCachedMap.CacheValue |
static class |
RedissonLocalCachedMap.LocalCachedMapClear |
static class |
RedissonLocalCachedMap.LocalCachedMapInvalidate |
Modifier | Constructor and Description |
---|---|
protected |
RedissonLocalCachedMap(RedissonClient redisson,
Codec codec,
CommandAsyncExecutor connectionManager,
String name,
LocalCachedMapOptions options) |
protected |
RedissonLocalCachedMap(RedissonClient redisson,
CommandAsyncExecutor commandExecutor,
String name,
LocalCachedMapOptions options) |
Modifier and Type | Method and Description |
---|---|
RFuture<V> |
addAndGetAsync(K key,
Number value) |
protected boolean |
await(RFuture<?> future,
long timeout,
TimeUnit timeoutUnit) |
boolean |
clearExpire()
Clear an expire timeout or expire date for object.
|
RFuture<Boolean> |
clearExpireAsync()
Clear an expire timeout or expire date for object in async mode.
|
RFuture<Boolean> |
containsKeyAsync(Object key) |
RFuture<Boolean> |
containsValueAsync(Object value) |
boolean |
delete()
Deletes the object
|
RFuture<Boolean> |
deleteAsync()
Delete object in async mode
|
void |
destroy()
Allows to destroy object then it's not necessary anymore.
|
protected byte[] |
encode(Object value) |
protected byte[] |
encodeMapKey(Object value) |
protected byte[] |
encodeMapValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet()
Returns values collections.
|
boolean |
expire(long timeToLive,
TimeUnit timeUnit)
Set a timeout for object.
|
RFuture<Boolean> |
expireAsync(long timeToLive,
TimeUnit timeUnit)
Set a timeout for object in async mode.
|
boolean |
expireAt(Date timestamp)
Set an expire date for object.
|
boolean |
expireAt(long timestamp)
Set an expire date for object.
|
RFuture<Boolean> |
expireAtAsync(Date timestamp)
Set an expire date for object in async mode.
|
RFuture<Boolean> |
expireAtAsync(long timestamp)
Set an expire date for object in async mode.
|
RFuture<Boolean> |
fastPutAsync(K key,
V value)
Associates the specified
value with the specified key
in async manner. |
RFuture<Boolean> |
fastPutIfAbsentAsync(K key,
V value) |
RFuture<Long> |
fastRemoveAsync(K... keys)
Removes
keys from map by one operation in async manner
Works faster than RMap.removeAsync but doesn't return
the value associated with key |
protected byte[] |
generateId() |
protected <V> V |
get(RFuture<V> future) |
RFuture<Map<K,V>> |
getAllAsync(Set<K> keys) |
RFuture<V> |
getAsync(Object key) |
Codec |
getCodec()
Returns the underlying Codec used by this RObject
|
String |
getName()
Returns name of object
|
boolean |
isExists()
Check object existence
|
RFuture<Boolean> |
isExistsAsync()
Check object existence in async mode.
|
Set<K> |
keySet()
Returns key set.
|
void |
migrate(String host,
int port,
int database)
Transfer an object from source Redis instance to destination Redis instance
|
RFuture<Void> |
migrateAsync(String host,
int port,
int database)
Transfer an object from source Redis instance to destination Redis instance
in async mode
|
boolean |
move(int database)
Move object to another database
|
RFuture<Boolean> |
moveAsync(int database)
Move object to another database in async mode
|
protected <V> RPromise<V> |
newPromise() |
protected <V> RFuture<V> |
newSucceededFuture(V result) |
void |
putAll(Map<? extends K,? extends V> m) |
RFuture<Void> |
putAllAsync(Map<? extends K,? extends V> map) |
RFuture<V> |
putAsync(K key,
V value) |
RFuture<V> |
putIfAbsentAsync(K key,
V value) |
RFuture<Set<Map.Entry<K,V>>> |
readAllEntrySetAsync()
Read all map entries at once
|
RFuture<Collection<V>> |
readAllValuesAsync()
Read all values at once
|
long |
remainTimeToLive()
Remaining time to live of Redisson object that has a timeout
|
RFuture<Long> |
remainTimeToLiveAsync()
Get remaining time to live of object in seconds.
|
RFuture<V> |
removeAsync(K key) |
RFuture<Boolean> |
removeAsync(Object key,
Object value) |
void |
rename(String newName)
Rename current object key to
newName |
RFuture<Void> |
renameAsync(String newName)
Rename current object key to
newName
in async mode |
boolean |
renamenx(String newName)
Rename current object key to
newName
only if new key is not exists |
RFuture<Boolean> |
renamenxAsync(String newName)
Rename current object key to
newName
in async mode only if new key is not exists |
RFuture<V> |
replaceAsync(K key,
V value) |
RFuture<Boolean> |
replaceAsync(K key,
V oldValue,
V newValue) |
Collection<V> |
values()
Returns values collections.
|
addAndGet, clear, containsKey, containsValue, entryIterator, equals, fastPut, fastPutIfAbsent, fastRemove, get, getAll, getName, hashCode, isEmpty, keyIterator, put, putIfAbsent, readAllEntrySet, readAllKeySet, readAllKeySetAsync, readAllValues, remove, remove, replace, replace, size, sizeAsync, valueIterator, valueSize, valueSizeAsync
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
addAndGet, fastPut, fastPutIfAbsent, fastRemove, getAll, readAllEntrySet, readAllKeySet, readAllValues, valueSize
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
clear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, remove, size
clearExpire, expire, expireAt, expireAt, remainTimeToLive
delete, getCodec, getName, isExists, migrate, move, rename, renamenx
readAllKeySetAsync, sizeAsync, valueSizeAsync
clearExpireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
isExistsAsync, migrateAsync, moveAsync, renameAsync, renamenxAsync
protected RedissonLocalCachedMap(RedissonClient redisson, CommandAsyncExecutor commandExecutor, String name, LocalCachedMapOptions options)
protected RedissonLocalCachedMap(RedissonClient redisson, Codec codec, CommandAsyncExecutor connectionManager, String name, LocalCachedMapOptions options)
public RFuture<Boolean> containsKeyAsync(Object key)
containsKeyAsync
in interface RMapAsync<K,V>
containsKeyAsync
in class RedissonMap<K,V>
public RFuture<Boolean> containsValueAsync(Object value)
containsValueAsync
in interface RMapAsync<K,V>
containsValueAsync
in class RedissonMap<K,V>
protected byte[] generateId()
public RFuture<Boolean> fastPutAsync(K key, V value)
RMapAsync
value
with the specified key
in async manner.
Works faster than RMap.putAsync
but not returning
the previous value associated with key
fastPutAsync
in interface RMapAsync<K,V>
fastPutAsync
in class RedissonMap<K,V>
key
- - map keyvalue
- - map valuetrue
if key is a new key in the hash and value was set.
false
if key already exists in the hash and the value was updated.public void destroy()
RDestroyable
destroy
in interface RDestroyable
public RFuture<V> removeAsync(K key)
removeAsync
in interface RMapAsync<K,V>
removeAsync
in class RedissonMap<K,V>
public RFuture<Long> fastRemoveAsync(K... keys)
RMapAsync
keys
from map by one operation in async manner
Works faster than RMap.removeAsync
but doesn't return
the value associated with key
fastRemoveAsync
in interface RMapAsync<K,V>
fastRemoveAsync
in class RedissonMap<K,V>
keys
- - map keyspublic RFuture<Boolean> deleteAsync()
RObjectAsync
deleteAsync
in interface RObjectAsync
true
if object was deleted false
if notpublic Set<K> keySet()
RMap
RMap.readAllKeySet()
does.public Collection<V> values()
RMap
RMap.readAllValues()
does.public Set<Map.Entry<K,V>> entrySet()
RMap
RMap.readAllEntrySet()
does.public RFuture<Map<K,V>> getAllAsync(Set<K> keys)
getAllAsync
in interface RMapAsync<K,V>
getAllAsync
in class RedissonMap<K,V>
public RFuture<Void> putAllAsync(Map<? extends K,? extends V> map)
putAllAsync
in interface RMapAsync<K,V>
putAllAsync
in class RedissonMap<K,V>
public RFuture<V> addAndGetAsync(K key, Number value)
addAndGetAsync
in interface RMapAsync<K,V>
addAndGetAsync
in class RedissonMap<K,V>
public RFuture<Boolean> fastPutIfAbsentAsync(K key, V value)
fastPutIfAbsentAsync
in interface RMapAsync<K,V>
fastPutIfAbsentAsync
in class RedissonMap<K,V>
public RFuture<Collection<V>> readAllValuesAsync()
RMapAsync
readAllValuesAsync
in interface RMapAsync<K,V>
readAllValuesAsync
in class RedissonMap<K,V>
public RFuture<Set<Map.Entry<K,V>>> readAllEntrySetAsync()
RMapAsync
readAllEntrySetAsync
in interface RMapAsync<K,V>
readAllEntrySetAsync
in class RedissonMap<K,V>
public RFuture<V> replaceAsync(K key, V value)
replaceAsync
in interface RMapAsync<K,V>
replaceAsync
in class RedissonMap<K,V>
public RFuture<Boolean> replaceAsync(K key, V oldValue, V newValue)
replaceAsync
in interface RMapAsync<K,V>
replaceAsync
in class RedissonMap<K,V>
public RFuture<Boolean> removeAsync(Object key, Object value)
removeAsync
in interface RMapAsync<K,V>
removeAsync
in class RedissonMap<K,V>
public RFuture<V> putIfAbsentAsync(K key, V value)
putIfAbsentAsync
in interface RMapAsync<K,V>
putIfAbsentAsync
in class RedissonMap<K,V>
public boolean expire(long timeToLive, TimeUnit timeUnit)
RExpirable
expire
in interface RExpirable
timeToLive
- - timeout before object will be deletedtimeUnit
- - timeout time unittrue
if the timeout was set and false
if notpublic RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit)
RExpirableAsync
expireAsync
in interface RExpirableAsync
timeToLive
- - timeout before object will be deletedtimeUnit
- - timeout time unittrue
if the timeout was set and false
if notpublic boolean expireAt(long timestamp)
RExpirable
expireAt
in interface RExpirable
timestamp
- - expire date in milliseconds (Unix timestamp)true
if the timeout was set and false
if notpublic RFuture<Boolean> expireAtAsync(long timestamp)
RExpirableAsync
expireAtAsync
in interface RExpirableAsync
timestamp
- - expire date in seconds (Unix timestamp)true
if the timeout was set and false
if notpublic boolean expireAt(Date timestamp)
RExpirable
expireAt
in interface RExpirable
timestamp
- - expire datetrue
if the timeout was set and false
if notpublic RFuture<Boolean> expireAtAsync(Date timestamp)
RExpirableAsync
expireAtAsync
in interface RExpirableAsync
timestamp
- - expire datetrue
if the timeout was set and false
if notpublic boolean clearExpire()
RExpirable
clearExpire
in interface RExpirable
true
if timeout was removed
false
if object does not exist or does not have an associated timeoutpublic RFuture<Boolean> clearExpireAsync()
RExpirableAsync
clearExpireAsync
in interface RExpirableAsync
true
if the timeout was cleared and false
if notpublic long remainTimeToLive()
RExpirable
remainTimeToLive
in interface RExpirable
public RFuture<Long> remainTimeToLiveAsync()
RExpirableAsync
remainTimeToLiveAsync
in interface RExpirableAsync
-1
if object does not exist or time in secondsprotected boolean await(RFuture<?> future, long timeout, TimeUnit timeoutUnit) throws InterruptedException
InterruptedException
protected <V> V get(RFuture<V> future)
protected <V> RPromise<V> newPromise()
protected <V> RFuture<V> newSucceededFuture(V result)
public void rename(String newName)
RObject
newName
public RFuture<Void> renameAsync(String newName)
RObjectAsync
newName
in async moderenameAsync
in interface RObjectAsync
newName
- - new name of objectpublic void migrate(String host, int port, int database)
RObject
public RFuture<Void> migrateAsync(String host, int port, int database)
RObjectAsync
migrateAsync
in interface RObjectAsync
host
- - destination hostport
- - destination portdatabase
- - destination databasepublic boolean move(int database)
RObject
public RFuture<Boolean> moveAsync(int database)
RObjectAsync
moveAsync
in interface RObjectAsync
database
- - number of Redis databasetrue
if key was moved false
if notpublic boolean renamenx(String newName)
RObject
newName
only if new key is not existspublic RFuture<Boolean> renamenxAsync(String newName)
RObjectAsync
newName
in async mode only if new key is not existsrenamenxAsync
in interface RObjectAsync
newName
- - new name of objecttrue
if object has been renamed successfully and false
otherwisepublic boolean delete()
RObject
public boolean isExists()
RObject
public RFuture<Boolean> isExistsAsync()
RObjectAsync
isExistsAsync
in interface RObjectAsync
true
if object exists and false
otherwisepublic Codec getCodec()
RObject
protected byte[] encode(Object value)
protected byte[] encodeMapKey(Object value)
protected byte[] encodeMapValue(Object value)
Copyright © 2014–2016 The Redisson Project. All rights reserved.