Uses of Interface
org.redisson.api.RSetCacheAsync
-
Packages that use RSetCacheAsync Package Description org.redisson org.redisson.api org.redisson.transaction -
-
Uses of RSetCacheAsync in org.redisson
Classes in org.redisson that implement RSetCacheAsync Modifier and Type Class Description class
RedissonSetCache<V>
Set-based cache with ability to set TTL for each entry viaRSetCache.add(Object, long, TimeUnit)
method.Methods in org.redisson that return RSetCacheAsync Modifier and Type Method Description <V> RSetCacheAsync<V>
RedissonBatch. getSetCache(String name)
<V> RSetCacheAsync<V>
RedissonBatch. getSetCache(String name, Codec codec)
-
Uses of RSetCacheAsync in org.redisson.api
Subinterfaces of RSetCacheAsync in org.redisson.api Modifier and Type Interface Description interface
RSetCache<V>
Set-based cache with ability to set TTL for each object.Methods in org.redisson.api that return RSetCacheAsync Modifier and Type Method Description <V> RSetCacheAsync<V>
RBatch. getSetCache(String name)
Returns set-based cache instance byname
.<V> RSetCacheAsync<V>
RBatch. getSetCache(String name, Codec codec)
Returns set-based cache instance byname
using providedcodec
for values. -
Uses of RSetCacheAsync in org.redisson.transaction
Classes in org.redisson.transaction that implement RSetCacheAsync Modifier and Type Class Description class
RedissonTransactionalSetCache<V>
-