Uses of Interface
org.redisson.api.RMapCache
-
Packages that use RMapCache Package Description org.redisson org.redisson.api org.redisson.api.map.event org.redisson.reactive org.redisson.spring.cache org.redisson.transaction -
-
Uses of RMapCache in org.redisson
Classes in org.redisson that implement RMapCache 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 RMapCache Modifier and Type Method Description <K,V>
RMapCache<K,V>Redisson. getMapCache(String name)
<K,V>
RMapCache<K,V>Redisson. getMapCache(String name, MapOptions<K,V> options)
<K,V>
RMapCache<K,V>Redisson. getMapCache(String name, Codec codec)
<K,V>
RMapCache<K,V>Redisson. getMapCache(String name, Codec codec, MapOptions<K,V> options)
-
Uses of RMapCache in org.redisson.api
Methods in org.redisson.api that return RMapCache Modifier and Type Method Description <K,V>
RMapCache<K,V>RedissonClient. getMapCache(String name)
Returns map-based cache instance by name.<K,V>
RMapCache<K,V>RedissonClient. getMapCache(String name, MapOptions<K,V> options)
Returns map-based cache instance by name.<K,V>
RMapCache<K,V>RedissonClient. getMapCache(String name, Codec codec)
Returns map-based cache instance byname
using providedcodec
for both cache keys and values.<K,V>
RMapCache<K,V>RedissonClient. getMapCache(String name, Codec codec, MapOptions<K,V> options)
Returns map-based cache instance byname
using providedcodec
for both cache keys and values.<K,V>
RMapCache<K,V>RTransaction. getMapCache(String name)
Returns transactional map-based cache instance by name.<K,V>
RMapCache<K,V>RTransaction. getMapCache(String name, Codec codec)
Returns transactional map-based cache instance byname
using providedcodec
for both cache keys and values. -
Uses of RMapCache in org.redisson.api.map.event
Methods in org.redisson.api.map.event that return RMapCache Modifier and Type Method Description RMapCache<K,V>
EntryEvent. getSource()
Constructors in org.redisson.api.map.event with parameters of type RMapCache Constructor Description EntryEvent(RMapCache<K,V> source, EntryEvent.Type type, K key, V value, V oldValue)
-
Uses of RMapCache in org.redisson.reactive
Constructors in org.redisson.reactive with parameters of type RMapCache Constructor Description RedissonMapCacheReactive(RMapCache<K,V> map, CommandReactiveExecutor commandExecutor)
-
Uses of RMapCache in org.redisson.spring.cache
Methods in org.redisson.spring.cache that return RMapCache Modifier and Type Method Description protected RMapCache<Object,Object>
RedissonSpringCacheManager. getMapCache(String name, CacheConfig config)
Constructors in org.redisson.spring.cache with parameters of type RMapCache Constructor Description RedissonCache(RMapCache<Object,Object> mapCache, CacheConfig config, boolean allowNullValues)
-
Uses of RMapCache in org.redisson.transaction
Classes in org.redisson.transaction that implement RMapCache Modifier and Type Class Description class
RedissonTransactionalMapCache<K,V>
Methods in org.redisson.transaction that return RMapCache Modifier and Type Method Description <K,V>
RMapCache<K,V>RedissonTransaction. getMapCache(String name)
<K,V>
RMapCache<K,V>RedissonTransaction. getMapCache(String name, Codec codec)
-