Uses of Interface
org.redisson.api.RSetCache
-
Packages that use RSetCache Package Description org.redisson org.redisson.api org.redisson.reactive org.redisson.rx org.redisson.transaction org.redisson.transaction.operation.set -
-
Uses of RSetCache in org.redisson
Classes in org.redisson that implement RSetCache Modifier and Type Class Description class
RedissonSetCache<V>
Set-based cache with ability to set TTL for each entry viaadd(Object, long, TimeUnit)
method.Methods in org.redisson that return RSetCache Modifier and Type Method Description <V> RSetCache<V>
Redisson. getSetCache(String name)
<V> RSetCache<V>
Redisson. getSetCache(String name, Codec codec)
-
Uses of RSetCache in org.redisson.api
Methods in org.redisson.api that return RSetCache Modifier and Type Method Description <V> RSetCache<V>
RedissonClient. getSetCache(String name)
Returns set-based cache instance byname
.<V> RSetCache<V>
RedissonClient. getSetCache(String name, Codec codec)
Returns set-based cache instance byname
.<V> RSetCache<V>
RTransaction. getSetCache(String name)
Returns transactional set-based cache instance byname
.<V> RSetCache<V>
RTransaction. getSetCache(String name, Codec codec)
Returns transactional set-based cache instance byname
. -
Uses of RSetCache in org.redisson.reactive
Constructors in org.redisson.reactive with parameters of type RSetCache Constructor Description RedissonSetCacheReactive(RSetCache<V> instance, RedissonReactiveClient redisson)
-
Uses of RSetCache in org.redisson.rx
Constructors in org.redisson.rx with parameters of type RSetCache Constructor Description RedissonSetCacheRx(RSetCache<V> instance, RedissonRxClient redisson)
-
Uses of RSetCache in org.redisson.transaction
Classes in org.redisson.transaction that implement RSetCache Modifier and Type Class Description class
RedissonTransactionalSetCache<V>
Methods in org.redisson.transaction that return RSetCache Modifier and Type Method Description <V> RSetCache<V>
RedissonTransaction. getSetCache(String name)
<V> RSetCache<V>
RedissonTransaction. getSetCache(String name, Codec codec)
Constructors in org.redisson.transaction with parameters of type RSetCache Constructor Description TransactionalSetCache(CommandAsyncExecutor commandExecutor, long timeout, List<TransactionalOperation> operations, RSetCache<V> set, String transactionId)
-
Uses of RSetCache in org.redisson.transaction.operation.set
Methods in org.redisson.transaction.operation.set with parameters of type RSetCache Modifier and Type Method Description protected RLock
SetOperation. getLock(RSetCache<?> setCache, CommandAsyncExecutor commandExecutor, Object value)
-