Interface RMap<K,V>
-
- Type Parameters:
K
- map keyV
- value
- All Superinterfaces:
ConcurrentMap<K,V>
,Map<K,V>
,RExpirable
,RExpirableAsync
,RMapAsync<K,V>
,RObject
,RObjectAsync
- All Known Subinterfaces:
RLocalCachedMap<K,V>
,RMapCache<K,V>
- All Known Implementing Classes:
RedissonLocalCachedMap
,RedissonMap
,RedissonMapCache
,RedissonTransactionalLocalCachedMap
,RedissonTransactionalMap
,RedissonTransactionalMapCache
public interface RMap<K,V> extends ConcurrentMap<K,V>, RExpirable, RMapAsync<K,V>
Redis based implementation ofConcurrentMap
andMap
This map uses serialized state of key instead of hashCode or equals methods. This map doesn't allow to store
null
as key or value.- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
addAndGet(K key, Number delta)
Adds the givendelta
to the current value by mappedkey
.boolean
containsKey(Object key)
Returnstrue
if this map contains map entry mapped by specifiedkey
, otherwisefalse
boolean
containsValue(Object value)
Returnstrue
if this map contains any map entry with specifiedvalue
, otherwisefalse
Set<Map.Entry<K,V>>
entrySet()
Returns map entries collection.Set<Map.Entry<K,V>>
entrySet(int count)
Returns map entries collection.Set<Map.Entry<K,V>>
entrySet(String keyPattern)
Returns map entries collection.Set<Map.Entry<K,V>>
entrySet(String keyPattern, int count)
Returns map entries collection.boolean
fastPut(K key, V value)
Stores the specifiedvalue
mapped by specifiedkey
.boolean
fastPutIfAbsent(K key, V value)
Stores the specifiedvalue
mapped by specifiedkey
only if there is no value with specifiedkey
stored before.boolean
fastPutIfExists(K key, V value)
Stores the specifiedvalue
mapped bykey
only if mapping already exists.long
fastRemove(K... keys)
Removes map entries mapped by specifiedkeys
.boolean
fastReplace(K key, V value)
Replaces previous value with a newvalue
mapped by specifiedkey
.V
get(Object key)
Returns the value mapped by definedkey
ornull
if value is absent.Map<K,V>
getAll(Set<K> keys)
Returns map slice contained the mappings with definedkeys
.RCountDownLatch
getCountDownLatch(K key)
ReturnsRCountDownLatch
instance associated with keyRLock
getFairLock(K key)
ReturnsRLock
instance associated with keyRLock
getLock(K key)
ReturnsRLock
instance associated with keyRPermitExpirableSemaphore
getPermitExpirableSemaphore(K key)
ReturnsRPermitExpirableSemaphore
instance associated with keyRReadWriteLock
getReadWriteLock(K key)
ReturnsRReadWriteLock
instance associated with keyRSemaphore
getSemaphore(K key)
ReturnsRSemaphore
instance associated with keySet<K>
keySet()
Returns key set of this map.Set<K>
keySet(int count)
Returns key set of this map.Set<K>
keySet(String pattern)
Returns key set of this map.Set<K>
keySet(String pattern, int count)
Returns key set of this map.void
loadAll(boolean replaceExistingValues, int parallelism)
Loads all map entries to this Redis map usingMapLoader
.void
loadAll(Set<? extends K> keys, boolean replaceExistingValues, int parallelism)
Loads map entries usingMapLoader
whose keys are listed in definedkeys
parameter.<KOut,VOut>
RMapReduce<K,V,KOut,VOut>mapReduce()
ReturnsRMapReduce
object associated with this mapV
put(K key, V value)
Stores the specifiedvalue
mapped by specifiedkey
.void
putAll(Map<? extends K,? extends V> map)
Stores map entries specified inmap
object in batch mode.void
putAll(Map<? extends K,? extends V> map, int batchSize)
Stores map entries specified inmap
object in batch mode.V
putIfAbsent(K key, V value)
Stores the specifiedvalue
mapped bykey
only if there is no value with specifiedkey
stored before.V
putIfExists(K key, V value)
Stores the specifiedvalue
mapped bykey
only if mapping already exists.Map<K,V>
randomEntries(int count)
Returns random map entries from this map limited bycount
Set<K>
randomKeys(int count)
Returns random keys from this map limited bycount
Set<Map.Entry<K,V>>
readAllEntrySet()
Read all map entries at onceSet<K>
readAllKeySet()
Read all keys at onceMap<K,V>
readAllMap()
Read all map as local instance at onceCollection<V>
readAllValues()
Read all values at onceV
remove(Object key)
Removes map entry by specifiedkey
and returns value.boolean
remove(Object key, Object value)
Removes map entry only if it exists with specifiedkey
andvalue
.V
replace(K key, V value)
Replaces previous value with a newvalue
mapped by specifiedkey
.boolean
replace(K key, V oldValue, V newValue)
Replaces previousoldValue
with anewValue
mapped by specifiedkey
.Collection<V>
values()
Returns values collection of this map.Collection<V>
values(int count)
Returns values collection of this map.Collection<V>
values(String keyPattern)
Returns values collection of this map.Collection<V>
values(String keyPattern, int count)
Returns values collection of this map.int
valueSize(K key)
Returns size of value mapped by specifiedkey
in bytes-
Methods inherited from interface java.util.concurrent.ConcurrentMap
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, replaceAll
-
Methods inherited from interface org.redisson.api.RExpirable
clearExpire, expire, expire, expire, expireAt, expireAt, expireIfGreater, expireIfGreater, expireIfLess, expireIfLess, expireIfNotSet, expireIfNotSet, expireIfSet, expireIfSet, getExpireTime, remainTimeToLive
-
Methods inherited from interface org.redisson.api.RExpirableAsync
clearExpireAsync, expireAsync, expireAsync, expireAsync, expireAtAsync, expireAtAsync, expireIfGreaterAsync, expireIfGreaterAsync, expireIfLessAsync, expireIfLessAsync, expireIfNotSetAsync, expireIfNotSetAsync, expireIfSetAsync, expireIfSetAsync, getExpireTimeAsync, remainTimeToLiveAsync
-
Methods inherited from interface org.redisson.api.RMapAsync
addAndGetAsync, computeAsync, computeIfAbsentAsync, computeIfPresentAsync, containsKeyAsync, containsValueAsync, fastPutAsync, fastPutIfAbsentAsync, fastPutIfExistsAsync, fastRemoveAsync, fastReplaceAsync, getAllAsync, getAsync, loadAllAsync, loadAllAsync, mergeAsync, putAllAsync, putAllAsync, putAsync, putIfAbsentAsync, putIfExistsAsync, randomEntriesAsync, randomKeysAsync, readAllEntrySetAsync, readAllKeySetAsync, readAllMapAsync, readAllValuesAsync, removeAsync, removeAsync, replaceAsync, replaceAsync, sizeAsync, valueSizeAsync
-
Methods inherited from interface org.redisson.api.RObject
addListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
-
Methods inherited from interface org.redisson.api.RObjectAsync
addListenerAsync, copyAsync, deleteAsync, dumpAsync, getIdleTimeAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
-
-
-
-
Method Detail
-
loadAll
void loadAll(boolean replaceExistingValues, int parallelism)
Loads all map entries to this Redis map usingMapLoader
.- Parameters:
replaceExistingValues
- -true
if existed values should be replaced,false
otherwise.parallelism
- - parallelism level, used to increase speed of process execution
-
loadAll
void loadAll(Set<? extends K> keys, boolean replaceExistingValues, int parallelism)
Loads map entries usingMapLoader
whose keys are listed in definedkeys
parameter.- Parameters:
keys
- - map keysreplaceExistingValues
- -true
if existed values should be replaced,false
otherwise.parallelism
- - parallelism level, used to increase speed of process execution
-
get
V get(Object key)
Returns the value mapped by definedkey
ornull
if value is absent.If map doesn't contain value for specified key and
MapLoader
is defined then value will be loaded in read-through mode.
-
put
V put(K key, V value)
Stores the specifiedvalue
mapped by specifiedkey
. Returns previous value if map entry with specifiedkey
already existed.If
MapWriter
is defined then map entry is stored in write-through mode.
-
putIfAbsent
V putIfAbsent(K key, V value)
Stores the specifiedvalue
mapped bykey
only if there is no value with specifiedkey
stored before.If
MapWriter
is defined then new map entry is stored in write-through mode.- Specified by:
putIfAbsent
in interfaceConcurrentMap<K,V>
- Specified by:
putIfAbsent
in interfaceMap<K,V>
- Parameters:
key
- - map keyvalue
- - map value- Returns:
null
if key is a new one in the hash and value was set. Previous value if key already exists in the hash and change hasn't been made.
-
putIfExists
V putIfExists(K key, V value)
Stores the specifiedvalue
mapped bykey
only if mapping already exists.If
MapWriter
is defined then new map entry is stored in write-through mode.- Parameters:
key
- - map keyvalue
- - map value- Returns:
null
if key doesn't exist in the hash and value hasn't been set. Previous value if key already exists in the hash and new value has been stored.
-
randomKeys
Set<K> randomKeys(int count)
Returns random keys from this map limited bycount
- Parameters:
count
- - keys amount to return- Returns:
- random keys
-
randomEntries
Map<K,V> randomEntries(int count)
Returns random map entries from this map limited bycount
- Parameters:
count
- - entries amount to return- Returns:
- random entries
-
mapReduce
<KOut,VOut> RMapReduce<K,V,KOut,VOut> mapReduce()
ReturnsRMapReduce
object associated with this map- Type Parameters:
KOut
- output keyVOut
- output value- Returns:
- MapReduce instance
-
getCountDownLatch
RCountDownLatch getCountDownLatch(K key)
ReturnsRCountDownLatch
instance associated with key- Parameters:
key
- - map key- Returns:
- countdownlatch
-
getPermitExpirableSemaphore
RPermitExpirableSemaphore getPermitExpirableSemaphore(K key)
ReturnsRPermitExpirableSemaphore
instance associated with key- Parameters:
key
- - map key- Returns:
- permitExpirableSemaphore
-
getSemaphore
RSemaphore getSemaphore(K key)
ReturnsRSemaphore
instance associated with key- Parameters:
key
- - map key- Returns:
- semaphore
-
getFairLock
RLock getFairLock(K key)
ReturnsRLock
instance associated with key- Parameters:
key
- - map key- Returns:
- fairlock
-
getReadWriteLock
RReadWriteLock getReadWriteLock(K key)
ReturnsRReadWriteLock
instance associated with key- Parameters:
key
- - map key- Returns:
- readWriteLock
-
getLock
RLock getLock(K key)
ReturnsRLock
instance associated with key- Parameters:
key
- - map key- Returns:
- lock
-
valueSize
int valueSize(K key)
Returns size of value mapped by specifiedkey
in bytes- Parameters:
key
- - map key- Returns:
- size of value
-
addAndGet
V addAndGet(K key, Number delta)
Adds the givendelta
to the current value by mappedkey
. Works only for numeric values!- Parameters:
key
- - map keydelta
- the value to add- Returns:
- the updated value
-
containsKey
boolean containsKey(Object key)
Returnstrue
if this map contains map entry mapped by specifiedkey
, otherwisefalse
- Specified by:
containsKey
in interfaceMap<K,V>
- Parameters:
key
- - map key- Returns:
true
if this map contains map entry mapped by specifiedkey
, otherwisefalse
-
containsValue
boolean containsValue(Object value)
Returnstrue
if this map contains any map entry with specifiedvalue
, otherwisefalse
- Specified by:
containsValue
in interfaceMap<K,V>
- Parameters:
value
- - map value- Returns:
true
if this map contains any map entry with specifiedvalue
, otherwisefalse
-
remove
V remove(Object key)
Removes map entry by specifiedkey
and returns value.If
MapWriter
is defined thenkey
is deleted in write-through mode.
-
replace
V replace(K key, V value)
Replaces previous value with a newvalue
mapped by specifiedkey
. Returnsnull
if there is no map entry stored before and doesn't store new map entry.If
MapWriter
is defined then newvalue
is written in write-through mode.
-
replace
boolean replace(K key, V oldValue, V newValue)
Replaces previousoldValue
with anewValue
mapped by specifiedkey
. Returnsfalse
if previous value doesn't exist or equal tooldValue
.If
MapWriter
is defined thennewValue
is written in write-through mode.
-
remove
boolean remove(Object key, Object value)
Removes map entry only if it exists with specifiedkey
andvalue
.If
MapWriter
is defined thenkey
is deleted in write-through mode.
-
putAll
void putAll(Map<? extends K,? extends V> map)
Stores map entries specified inmap
object in batch mode.If
MapWriter
is defined then map entries will be stored in write-through mode.
-
putAll
void putAll(Map<? extends K,? extends V> map, int batchSize)
Stores map entries specified inmap
object in batch mode. Batch inserted by chunks limited bybatchSize
value to avoid OOM and/or Redis response timeout error for map with big size.If
MapWriter
is defined then map entries are stored in write-through mode.- Parameters:
map
- mappings to be stored in this mapbatchSize
- - size of map entries batch
-
getAll
Map<K,V> getAll(Set<K> keys)
Returns map slice contained the mappings with definedkeys
.If map doesn't contain value/values for specified key/keys and
MapLoader
is defined then value/values will be loaded in read-through mode.The returned map is NOT backed by the original map.
- Parameters:
keys
- - map keys- Returns:
- Map slice
-
fastRemove
long fastRemove(K... keys)
Removes map entries mapped by specifiedkeys
.Works faster than
but not returning the value.remove(Object)
If
MapWriter
is defined thenkeys
are deleted in write-through mode.- Parameters:
keys
- - map keys- Returns:
- the number of keys that were removed from the hash, not including specified but non existing keys
-
fastPut
boolean fastPut(K key, V value)
Stores the specifiedvalue
mapped by specifiedkey
.Works faster than
but not returning previous value.put(Object, Object)
Returns
true
if key is a new key in the hash and value was set orfalse
if key already exists in the hash and the value was updated.If
MapWriter
is defined then map entry is stored in write-through mode.- Parameters:
key
- - map keyvalue
- - map value- Returns:
true
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.
-
fastReplace
boolean fastReplace(K key, V value)
Replaces previous value with a newvalue
mapped by specifiedkey
.Works faster than
but not returning the previous value.replace(Object, Object)
Returns
true
if key exists and value was updated orfalse
if key doesn't exists and value wasn't updated.If
MapWriter
is defined then new map entry is stored in write-through mode.- Parameters:
key
- - map keyvalue
- - map value- Returns:
true
if key exists and value was updated.false
if key doesn't exists and value wasn't updated.
-
fastPutIfAbsent
boolean fastPutIfAbsent(K key, V value)
Stores the specifiedvalue
mapped by specifiedkey
only if there is no value with specifiedkey
stored before.Returns
true
if key is a new one in the hash and value was set orfalse
if key already exists in the hash and change hasn't been made.Works faster than
but not returning the previous value associated withputIfAbsent(Object, Object)
key
If
MapWriter
is defined then new map entry is stored in write-through mode.- Parameters:
key
- - map keyvalue
- - map value- Returns:
true
if key is a new one in the hash and value was set.false
if key already exists in the hash and change hasn't been made.
-
fastPutIfExists
boolean fastPutIfExists(K key, V value)
Stores the specifiedvalue
mapped bykey
only if mapping already exists.Returns
true
if key is a new one in the hash and value was set orfalse
if key already exists in the hash and change hasn't been made.Works faster than
but doesn't return previous value associated withputIfExists(Object, Object)
key
If
MapWriter
is defined then new map entry is stored in write-through mode.- Parameters:
key
- - map keyvalue
- - map value- Returns:
true
if key already exists in the hash and new value has been stored.false
if key doesn't exist in the hash and value hasn't been set.
-
readAllValues
Collection<V> readAllValues()
Read all values at once- Returns:
- values
-
readAllEntrySet
Set<Map.Entry<K,V>> readAllEntrySet()
Read all map entries at once- Returns:
- entries
-
keySet
Set<K> keySet()
Returns key set of this map. Keys are loaded in batch. Batch size is10
.- Specified by:
keySet
in interfaceMap<K,V>
- Returns:
- key set
- See Also:
readAllKeySet()
-
keySet
Set<K> keySet(int count)
Returns key set of this map. Keys are loaded in batch. Batch size is defined bycount
param.- Parameters:
count
- - size of keys batch- Returns:
- key set
- See Also:
readAllKeySet()
-
keySet
Set<K> keySet(String pattern, int count)
Returns key set of this map. Ifpattern
is not null then only keys match this pattern are loaded. Keys are loaded in batch. Batch size is defined bycount
param.Use
org.redisson.client.codec.StringCodec
for Map keys.Supported glob-style patterns:
h?llo subscribes to hello, hallo and hxllo
h*llo subscribes to hllo and heeeello
h[ae]llo subscribes to hello and hallo, but not hillo
- Parameters:
pattern
- - key patterncount
- - size of keys batch- Returns:
- key set
- See Also:
readAllKeySet()
-
keySet
Set<K> keySet(String pattern)
Returns key set of this map. Ifpattern
is not null then only keys match this pattern are loaded.Use
org.redisson.client.codec.StringCodec
for Map keys.Supported glob-style patterns:
h?llo subscribes to hello, hallo and hxllo
h*llo subscribes to hllo and heeeello
h[ae]llo subscribes to hello and hallo, but not hillo
- Parameters:
pattern
- - key pattern- Returns:
- key set
- See Also:
readAllKeySet()
-
values
Collection<V> values()
Returns values collection of this map. Values are loaded in batch. Batch size is10
.- Specified by:
values
in interfaceMap<K,V>
- Returns:
- values collection
- See Also:
readAllValues()
-
values
Collection<V> values(String keyPattern)
Returns values collection of this map. Values are loaded in batch. Batch size is10
. IfkeyPattern
is not null then only values mapped by matched keys of this pattern are loaded.Use
org.redisson.client.codec.StringCodec
for Map keys.Supported glob-style patterns:
h?llo subscribes to hello, hallo and hxllo
h*llo subscribes to hllo and heeeello
h[ae]llo subscribes to hello and hallo, but not hillo
- Parameters:
keyPattern
- - key pattern- Returns:
- values collection
- See Also:
readAllValues()
-
values
Collection<V> values(String keyPattern, int count)
Returns values collection of this map. Values are loaded in batch. Batch size is defined bycount
param. IfkeyPattern
is not null then only values mapped by matched keys of this pattern are loaded.Use
org.redisson.client.codec.StringCodec
for Map keys.Supported glob-style patterns:
h?llo subscribes to hello, hallo and hxllo
h*llo subscribes to hllo and heeeello
h[ae]llo subscribes to hello and hallo, but not hillo
- Parameters:
keyPattern
- - key patterncount
- - size of values batch- Returns:
- values collection
- See Also:
readAllValues()
-
values
Collection<V> values(int count)
Returns values collection of this map. Values are loaded in batch. Batch size is defined bycount
param.- Parameters:
count
- - size of values batch- Returns:
- values collection
- See Also:
readAllValues()
-
entrySet
Set<Map.Entry<K,V>> entrySet()
Returns map entries collection. Map entries are loaded in batch. Batch size is10
.- Specified by:
entrySet
in interfaceMap<K,V>
- Returns:
- map entries collection
- See Also:
readAllEntrySet()
-
entrySet
Set<Map.Entry<K,V>> entrySet(String keyPattern)
Returns map entries collection. Map entries are loaded in batch. Batch size is10
. IfkeyPattern
is not null then only entries mapped by matched keys of this pattern are loaded. Supported glob-style patterns:h?llo subscribes to hello, hallo and hxllo
h*llo subscribes to hllo and heeeello
h[ae]llo subscribes to hello and hallo, but not hillo
- Parameters:
keyPattern
- - key pattern- Returns:
- map entries collection
- See Also:
readAllEntrySet()
-
entrySet
Set<Map.Entry<K,V>> entrySet(String keyPattern, int count)
Returns map entries collection. Map entries are loaded in batch. Batch size is defined bycount
param. IfkeyPattern
is not null then only entries mapped by matched keys of this pattern are loaded. Supported glob-style patterns:h?llo subscribes to hello, hallo and hxllo
h*llo subscribes to hllo and heeeello
h[ae]llo subscribes to hello and hallo, but not hillo
- Parameters:
keyPattern
- - key patterncount
- - size of entries batch- Returns:
- map entries collection
- See Also:
readAllEntrySet()
-
entrySet
Set<Map.Entry<K,V>> entrySet(int count)
Returns map entries collection. Map entries are loaded in batch. Batch size is defined bycount
param.- Parameters:
count
- - size of entries batch- Returns:
- map entries collection
- See Also:
readAllEntrySet()
-
-