Interface RMap<K,V>
- Type Parameters:
K- map keyV- value
- All Superinterfaces:
ConcurrentMap<K,,V> Map<K,,V> RDestroyable,RExpirable,RExpirableAsync,RMapAsync<K,,V> RObject,RObjectAsync
- All Known Subinterfaces:
RLocalCachedMap<K,,V> RMapCache<K,,V> RMapCacheNative<K,V>
- All Known Implementing Classes:
MapCacheNativeWrapper,RedissonLocalCachedMap,RedissonMap,RedissonMapCache,RedissonMapCacheNative,RedissonTransactionalLocalCachedMap,RedissonTransactionalMap,RedissonTransactionalMapCache
ConcurrentMap
and Map
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
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionAdds the givendeltato the current value by mappedkey.intaddListener(ObjectListener listener) Adds object event listenerbooleancontainsKey(Object key) Returnstrueif this map contains map entry mapped by specifiedkey, otherwisefalsebooleancontainsValue(Object value) Returnstrueif this map contains any map entry with specifiedvalue, otherwisefalseentrySet()Returns map entries collection.entrySet(int count) Returns map entries collection.Returns map entries collection.Returns map entries collection.booleanStores the specifiedvaluemapped by specifiedkey.booleanfastPutIfAbsent(K key, V value) Stores the specifiedvaluemapped by specifiedkeyonly if there is no value with specifiedkeystored before.booleanfastPutIfExists(K key, V value) Stores the specifiedvaluemapped bykeyonly if mapping already exists.longfastRemove(K... keys) Removes map entries mapped by specifiedkeys.booleanfastReplace(K key, V value) Replaces previous value with a newvaluemapped by specifiedkey.Returns the value mapped by definedkeyornullif value is absent.Returns map slice contained the mappings with definedkeys.getCountDownLatch(K key) ReturnsRCountDownLatchinstance associated with keygetFairLock(K key) ReturnsRLockinstance associated with keyReturnsRLockinstance associated with keyReturnsRPermitExpirableSemaphoreinstance associated with keygetReadWriteLock(K key) ReturnsRReadWriteLockinstance associated with keygetSemaphore(K key) ReturnsRSemaphoreinstance associated with keykeySet()Returns key set of this map.keySet(int count) Returns key set of this map.Returns key set of this map.Returns key set of this map.voidloadAll(boolean replaceExistingValues, int parallelism) Loads all map entries to this Redis map usingMapLoader.voidLoads map entries usingMapLoaderwhose keys are listed in definedkeysparameter.<KOut,VOut>
RMapReduce<K, V, KOut, VOut> ReturnsRMapReduceobject associated with this mapStores the specifiedvaluemapped by specifiedkey.voidStores map entries specified inmapobject in batch mode.voidStores map entries specified inmapobject in batch mode.putIfAbsent(K key, V value) Stores the specifiedvaluemapped bykeyonly if there is no value with specifiedkeystored before.putIfExists(K key, V value) Stores the specifiedvaluemapped bykeyonly if mapping already exists.randomEntries(int count) Returns random map entries from this map limited bycountrandomKeys(int count) Returns random keys from this map limited bycountRead all map entries at onceRead all keys at onceRead all map as local instance at onceRead all values at onceRemoves map entry by specifiedkeyand returns value.booleanRemoves map entry only if it exists with specifiedkeyandvalue.Replaces previous value with a newvaluemapped by specifiedkey.booleanReplaces previousoldValuewith anewValuemapped by specifiedkey.values()Returns values collection of this map.values(int count) Returns values collection of this map.Returns values collection of this map.Returns values collection of this map.intReturns size of value mapped by specifiedkeyin bytesMethods inherited from interface java.util.concurrent.ConcurrentMap
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, replaceAllMethods inherited from interface org.redisson.api.RDestroyable
destroyMethods inherited from interface org.redisson.api.RExpirable
clearExpire, expire, expire, expire, expireAt, expireAt, expireIfGreater, expireIfGreater, expireIfLess, expireIfLess, expireIfNotSet, expireIfNotSet, expireIfSet, expireIfSet, getExpireTime, remainTimeToLiveMethods inherited from interface org.redisson.api.RExpirableAsync
clearExpireAsync, expireAsync, expireAsync, expireAsync, expireAtAsync, expireAtAsync, expireIfGreaterAsync, expireIfGreaterAsync, expireIfLessAsync, expireIfLessAsync, expireIfNotSetAsync, expireIfNotSetAsync, expireIfSetAsync, expireIfSetAsync, getExpireTimeAsync, remainTimeToLiveAsyncMethods inherited from interface org.redisson.api.RMapAsync
addAndGetAsync, addListenerAsync, clearAsync, 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, valueSizeAsyncMethods inherited from interface org.redisson.api.RObject
copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlinkMethods inherited from interface org.redisson.api.RObjectAsync
copyAsync, deleteAsync, dumpAsync, getIdleTimeAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
-
Method Details
-
loadAll
void loadAll(boolean replaceExistingValues, int parallelism) Loads all map entries to this Redis map usingMapLoader.- Parameters:
replaceExistingValues- -trueif existed values should be replaced,falseotherwise.parallelism- - parallelism level, used to increase speed of process execution
-
loadAll
Loads map entries usingMapLoaderwhose keys are listed in definedkeysparameter.- Parameters:
keys- - map keysreplaceExistingValues- -trueif existed values should be replaced,falseotherwise.parallelism- - parallelism level, used to increase speed of process execution
-
get
Returns the value mapped by definedkeyornullif value is absent.If map doesn't contain value for specified key and
MapLoaderis defined then value will be loaded in read-through mode. -
put
Stores the specifiedvaluemapped by specifiedkey. Returns previous value if map entry with specifiedkeyalready existed.If
MapWriteris defined then map entry is stored in write-through mode. -
putIfAbsent
Stores the specifiedvaluemapped bykeyonly if there is no value with specifiedkeystored before.If
MapWriteris defined then new map entry is stored in write-through mode.- Specified by:
putIfAbsentin interfaceConcurrentMap<K,V> - Specified by:
putIfAbsentin interfaceMap<K,V> - Parameters:
key- - map keyvalue- - map value- Returns:
nullif 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
Stores the specifiedvaluemapped bykeyonly if mapping already exists.If
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
nullif 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
Returns random keys from this map limited bycount- Parameters:
count- - keys amount to return- Returns:
- random keys
-
randomEntries
Returns random map entries from this map limited bycount- Parameters:
count- - entries amount to return- Returns:
- random entries
-
mapReduce
ReturnsRMapReduceobject associated with this map- Type Parameters:
KOut- output keyVOut- output value- Returns:
- MapReduce instance
-
getCountDownLatch
ReturnsRCountDownLatchinstance associated with key- Parameters:
key- - map key- Returns:
- countdownlatch
-
getPermitExpirableSemaphore
ReturnsRPermitExpirableSemaphoreinstance associated with key- Parameters:
key- - map key- Returns:
- permitExpirableSemaphore
-
getSemaphore
ReturnsRSemaphoreinstance associated with key- Parameters:
key- - map key- Returns:
- semaphore
-
getFairLock
ReturnsRLockinstance associated with key- Parameters:
key- - map key- Returns:
- fairlock
-
getReadWriteLock
ReturnsRReadWriteLockinstance associated with key- Parameters:
key- - map key- Returns:
- readWriteLock
-
getLock
ReturnsRLockinstance associated with key- Parameters:
key- - map key- Returns:
- lock
-
valueSize
Returns size of value mapped by specifiedkeyin bytes- Parameters:
key- - map key- Returns:
- size of value
-
addAndGet
Adds the givendeltato the current value by mappedkey.Works only with codecs below
- Parameters:
key- - map keydelta- the value to add- Returns:
- the updated value
-
containsKey
Returnstrueif this map contains map entry mapped by specifiedkey, otherwisefalse- Specified by:
containsKeyin interfaceMap<K,V> - Parameters:
key- - map key- Returns:
trueif this map contains map entry mapped by specifiedkey, otherwisefalse
-
containsValue
Returnstrueif this map contains any map entry with specifiedvalue, otherwisefalse- Specified by:
containsValuein interfaceMap<K,V> - Parameters:
value- - map value- Returns:
trueif this map contains any map entry with specifiedvalue, otherwisefalse
-
remove
Removes map entry by specifiedkeyand returns value.If
MapWriteris defined thenkeyis deleted in write-through mode. -
replace
Replaces previous value with a newvaluemapped by specifiedkey. Returnsnullif there is no map entry stored before and doesn't store new map entry.If
MapWriteris defined then newvalueis written in write-through mode. -
replace
Replaces previousoldValuewith anewValuemapped by specifiedkey. Returnsfalseif previous value doesn't exist or equal tooldValue.If
MapWriteris defined thennewValueis written in write-through mode. -
remove
Removes map entry only if it exists with specifiedkeyandvalue.If
MapWriteris defined thenkeyis deleted in write-through mode. -
putAll
Stores map entries specified inmapobject in batch mode.If
MapWriteris defined then map entries will be stored in write-through mode. -
putAll
Stores map entries specified inmapobject in batch mode. Batch inserted by chunks limited bybatchSizevalue to avoid OOM and/or Redis response timeout error for map with big size.If
MapWriteris 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
Returns map slice contained the mappings with definedkeys.If map doesn't contain value/values for specified key/keys and
MapLoaderis 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
Removes map entries mapped by specifiedkeys.Works faster than
but not returning the value.remove(Object)If
MapWriteris defined thenkeysare 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
Stores the specifiedvaluemapped by specifiedkey.Works faster than
but not returning previous value.put(Object, Object)Returns
trueif key is a new key in the hash and value was set orfalseif key already exists in the hash and the value was updated.If
MapWriteris defined then map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif key is a new key in the hash and value was set.falseif key already exists in the hash and the value was updated.
-
fastReplace
Replaces previous value with a newvaluemapped by specifiedkey.Works faster than
but not returning the previous value.replace(Object, Object)Returns
trueif key exists and value was updated orfalseif key doesn't exists and value wasn't updated.If
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif key exists and value was updated.falseif key doesn't exists and value wasn't updated.
-
fastPutIfAbsent
Stores the specifiedvaluemapped by specifiedkeyonly if there is no value with specifiedkeystored before.Returns
trueif key is a new one in the hash and value was set orfalseif 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)keyIf
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif key is a new one in the hash and value was set.falseif key already exists in the hash and change hasn't been made.
-
fastPutIfExists
Stores the specifiedvaluemapped bykeyonly if mapping already exists.Returns
trueif key is a new one in the hash and value was set orfalseif 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)keyIf
MapWriteris defined then new map entry is stored in write-through mode.- Parameters:
key- - map keyvalue- - map value- Returns:
trueif key already exists in the hash and new value has been stored.falseif key doesn't exist in the hash and value hasn't been set.
-
readAllKeySet
Read all keys at once- Returns:
- keys
-
readAllValues
Collection<V> readAllValues()Read all values at once- Returns:
- values
-
readAllEntrySet
Read all map entries at once- Returns:
- entries
-
readAllMap
Read all map as local instance at once- Returns:
- map
-
keySet
Returns key set of this map. Keys are loaded in batch. Batch size is10. -
keySet
Returns key set of this map. Keys are loaded in batch. Batch size is defined bycountparam.- Parameters:
count- - size of keys batch- Returns:
- key set
- See Also:
-
keySet
Returns key set of this map. Ifpatternis not null then only keys match this pattern are loaded. Keys are loaded in batch. Batch size is defined bycountparam.Use
org.redisson.client.codec.StringCodecfor 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:
-
keySet
Returns key set of this map. Ifpatternis not null then only keys match this pattern are loaded.Use
org.redisson.client.codec.StringCodecfor 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:
-
values
Collection<V> values()Returns values collection of this map. Values are loaded in batch. Batch size is10. -
values
Returns values collection of this map. Values are loaded in batch. Batch size is10. IfkeyPatternis not null then only values mapped by matched keys of this pattern are loaded.Use
org.redisson.client.codec.StringCodecfor 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:
-
values
Returns values collection of this map. Values are loaded in batch. Batch size is defined bycountparam. IfkeyPatternis not null then only values mapped by matched keys of this pattern are loaded.Use
org.redisson.client.codec.StringCodecfor 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:
-
values
Returns values collection of this map. Values are loaded in batch. Batch size is defined bycountparam.- Parameters:
count- - size of values batch- Returns:
- values collection
- See Also:
-
entrySet
Returns map entries collection. Map entries are loaded in batch. Batch size is10. -
entrySet
Returns map entries collection. Map entries are loaded in batch. Batch size is10. IfkeyPatternis 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:
-
entrySet
Returns map entries collection. Map entries are loaded in batch. Batch size is defined bycountparam. IfkeyPatternis 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:
-
entrySet
Returns map entries collection. Map entries are loaded in batch. Batch size is defined bycountparam.- Parameters:
count- - size of entries batch- Returns:
- map entries collection
- See Also:
-
addListener
Adds object event listener- Specified by:
addListenerin interfaceRObject- Parameters:
listener- object event listener- Returns:
- listener id
- See Also:
-