Uses of Interface
org.redisson.api.RMapAsync
-
Packages that use RMapAsync Package Description org.redisson org.redisson.api org.redisson.transaction -
-
Uses of RMapAsync in org.redisson
Classes in org.redisson that implement RMapAsync Modifier and Type Class Description class
RedissonLocalCachedMap<K,V>
class
RedissonMap<K,V>
Distributed and concurrent implementation ofConcurrentMap
andMap
class
RedissonMapCache<K,V>
Map-based cache with ability to set TTL for each entry viaRedissonMapCache.put(Object, Object, long, TimeUnit)
orRedissonMapCache.putIfAbsent(Object, Object, long, TimeUnit)
methods.Methods in org.redisson that return RMapAsync Modifier and Type Method Description <K,V>
RMapAsync<K,V>RedissonBatch. getMap(String name)
<K,V>
RMapAsync<K,V>RedissonBatch. getMap(String name, Codec codec)
-
Uses of RMapAsync in org.redisson.api
Subinterfaces of RMapAsync in org.redisson.api Modifier and Type Interface Description interface
RLocalCachedMap<K,V>
Map object with local entry cache support.interface
RMap<K,V>
Redis based implementation ofConcurrentMap
andMap
interface
RMapCache<K,V>
Map-based cache with ability to set TTL for each entry viaRMapCache.put(Object, Object, long, TimeUnit)
orRMapCache.putIfAbsent(Object, Object, long, TimeUnit)
And therefore has an complex lua-scripts inside.interface
RMapCacheAsync<K,V>
Map-based cache with ability to set TTL for each entry viaRMapCache.put(Object, Object, long, TimeUnit)
orRMapCache.putIfAbsent(Object, Object, long, TimeUnit)
And therefore has an complex lua-scripts inside.Methods in org.redisson.api that return RMapAsync Modifier and Type Method Description <K,V>
RMapAsync<K,V>RBatch. getMap(String name)
Returns map instance by name.<K,V>
RMapAsync<K,V>RBatch. getMap(String name, Codec codec)
-
Uses of RMapAsync in org.redisson.transaction
Classes in org.redisson.transaction that implement RMapAsync Modifier and Type Class Description class
RedissonTransactionalLocalCachedMap<K,V>
class
RedissonTransactionalMap<K,V>
class
RedissonTransactionalMapCache<K,V>
-