Uses of Class
org.redisson.api.MapCacheOptions
Packages that use MapCacheOptions
-
Uses of MapCacheOptions in org.redisson
Methods in org.redisson with parameters of type MapCacheOptionsModifier and TypeMethodDescription<K,V> RMapCache <K, V> Redisson.getMapCache(String name, MapCacheOptions<K, V> options) <K,V> RMapCache <K, V> Redisson.getMapCache(String name, Codec codec, MapCacheOptions<K, V> options) <K,V> RMapCacheReactive <K, V> RedissonReactive.getMapCache(String name, MapCacheOptions<K, V> options) <K,V> RMapCacheReactive <K, V> RedissonReactive.getMapCache(String name, Codec codec, MapCacheOptions<K, V> options) <K,V> RMapCacheRx <K, V> RedissonRx.getMapCache(String name, MapCacheOptions<K, V> options) <K,V> RMapCacheRx <K, V> RedissonRx.getMapCache(String name, Codec codec, MapCacheOptions<K, V> options) Constructors in org.redisson with parameters of type MapCacheOptionsModifierConstructorDescriptionRedissonMapCache(Codec codec, EvictionScheduler evictionScheduler, CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson, MapCacheOptions<K, V> options, WriteBehindService writeBehindService) RedissonMapCache(EvictionScheduler evictionScheduler, CommandAsyncExecutor commandExecutor, String name, RedissonClient redisson, MapCacheOptions<K, V> options, WriteBehindService writeBehindService) -
Uses of MapCacheOptions in org.redisson.api
Methods in org.redisson.api that return MapCacheOptionsModifier and TypeMethodDescriptionstatic <K,V> MapCacheOptions <K, V> MapCacheOptions.defaults()MapCacheOptions.loaderAsync(MapLoaderAsync<K, V> loaderAsync) MapCacheOptions.removeEmptyEvictionTask()Removes eviction task from memory if map is empty upon entries eviction process completion.MapCacheOptions.writeBehindBatchSize(int writeBehindBatchSize) MapCacheOptions.writeBehindDelay(int writeBehindDelay) MapCacheOptions.writeMode(MapOptions.WriteMode writeMode) MapCacheOptions.writerAsync(MapWriterAsync<K, V> writer) Methods in org.redisson.api with parameters of type MapCacheOptionsModifier and TypeMethodDescription<K,V> RMapCache <K, V> RedissonClient.getMapCache(String name, MapCacheOptions<K, V> options) Returns map-based cache instance by name.<K,V> RMapCache <K, V> RedissonClient.getMapCache(String name, Codec codec, MapCacheOptions<K, V> options) Returns map-based cache instance bynameusing providedcodecfor both cache keys and values.<K,V> RMapCacheReactive <K, V> RedissonReactiveClient.getMapCache(String name, MapCacheOptions<K, V> options) Returns map-based cache instance by name.<K,V> RMapCacheReactive <K, V> RedissonReactiveClient.getMapCache(String name, Codec codec, MapCacheOptions<K, V> options) Returns map-based cache instance bynameusing providedcodecfor both cache keys and values.<K,V> RMapCacheRx <K, V> RedissonRxClient.getMapCache(String name, MapCacheOptions<K, V> options) Returns map-based cache instance by name.<K,V> RMapCacheRx <K, V> RedissonRxClient.getMapCache(String name, Codec codec, MapCacheOptions<K, V> options) Returns map-based cache instance bynameusing providedcodecfor both cache keys and values. -
Uses of MapCacheOptions in org.redisson.eviction
Methods in org.redisson.eviction with parameters of type MapCacheOptions