Uses of Interface
org.redisson.api.RMapCacheAsync
-
Packages that use RMapCacheAsync Package Description org.redisson org.redisson.api org.redisson.transaction -
-
Uses of RMapCacheAsync in org.redisson
Classes in org.redisson that implement RMapCacheAsync Modifier and Type Class Description 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 RMapCacheAsync Modifier and Type Method Description <K,V>
RMapCacheAsync<K,V>RedissonBatch. getMapCache(String name)
<K,V>
RMapCacheAsync<K,V>RedissonBatch. getMapCache(String name, Codec codec)
-
Uses of RMapCacheAsync in org.redisson.api
Subinterfaces of RMapCacheAsync in org.redisson.api Modifier and Type Interface Description 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.Methods in org.redisson.api that return RMapCacheAsync Modifier and Type Method Description <K,V>
RMapCacheAsync<K,V>RBatch. getMapCache(String name)
Returns map-based cache instance byname
.<K,V>
RMapCacheAsync<K,V>RBatch. getMapCache(String name, Codec codec)
Returns map-based cache instance byname
using providedcodec
for both cache keys and values. -
Uses of RMapCacheAsync in org.redisson.transaction
Classes in org.redisson.transaction that implement RMapCacheAsync Modifier and Type Class Description class
RedissonTransactionalMapCache<K,V>
-