Package org.redisson.api
Interface RBatchReactive
- All Known Implementing Classes:
RedissonBatchReactive
public interface RBatchReactive
Reactive interface for Redis pipeline feature.
All method invocations on objects
from this interface are batched to separate queue and could be executed later
with execute()
method.
- Author:
- Nikita Koksharov
-
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono
<Void> discard()
Discard batched commands and release allocated buffers used for parameters encoding.reactor.core.publisher.Mono
<BatchResult<?>> execute()
Executes all operations accumulated during Reactive methods invocations Reactivehronously.getAtomicDouble
(String name) Returns atomicDouble instance by name.getAtomicLong
(String name) Returns "atomic long" instance by name.Returns bitSet instance by name.<V> RBlockingDequeReactive
<V> getBlockingDeque
(String name) Returns blocking deque instance by name.<V> RBlockingDequeReactive
<V> getBlockingDeque
(String name, Codec codec) <V> RBlockingQueueReactive
<V> getBlockingQueue
(String name) Returns blocking queue instance by name.<V> RBlockingQueueReactive
<V> getBlockingQueue
(String name, Codec codec) <V> RBucketReactive
<V> Returns object holder by name<V> RBucketReactive
<V> <V> RDequeReactive
<V> Returns deque instance by name.<V> RDequeReactive
<V> Returns interface for Redis Function featuregetFunction
(Codec codec) Returns interface for Redis Function feature using provided codec<V> RGeoReactive
<V> Returns geospatial items holder instance byname
.<V> RGeoReactive
<V> Returns geospatial items holder instance byname
using provided codec for geospatial members.<V> RHyperLogLogReactive
<V> getHyperLogLog
(String name) Returns HyperLogLog object by name<V> RHyperLogLogReactive
<V> getHyperLogLog
(String name, Codec codec) <V> RJsonBucketReactive
<V> getJsonBucket
(String name, JsonCodec<V> codec) Returns JSON data holder instance by name using provided codec.getKeys()
Returns keys operations.getLexSortedSet
(String name) Returns String based Redis Sorted Set instance by name All elements are inserted with the same score during addition, in order to force lexicographical ordering<V> RListReactive
<V> Returns list instance by name.<V> RListReactive
<V> <K,
V> RListMultimapReactive <K, V> getListMultimap
(String name) Returns List based MultiMap instance by name.<K,
V> RListMultimapReactive <K, V> getListMultimap
(String name, Codec codec) Returns List based MultiMap instance by name using provided codec for both map keys and values.<K,
V> RMapReactive <K, V> Returns map instance by name.<K,
V> RMapReactive <K, V> <K,
V> RMapCacheReactive <K, V> getMapCache
(String name) Returns map-based cache instance byname
.<K,
V> RMapCacheReactive <K, V> getMapCache
(String name, Codec codec) Returns map-based cache instance byname
using providedcodec
for both cache keys and values.<V> RQueueReactive
<V> Returns queue instance by name.<V> RQueueReactive
<V> <V> RScoredSortedSetReactive
<V> getScoredSortedSet
(String name) Returns Redis Sorted Set instance by name<V> RScoredSortedSetReactive
<V> getScoredSortedSet
(String name, Codec codec) Returns script operations objectReturns script operations object using provided codec.<V> RSetReactive
<V> Returns set instance by name.<V> RSetReactive
<V> <V> RSetCacheReactive
<V> getSetCache
(String name) Returns set-based cache instance byname
.<V> RSetCacheReactive
<V> getSetCache
(String name, Codec codec) Returns set-based cache instance byname
using providedcodec
for values.<K,
V> RSetMultimapReactive <K, V> getSetMultimap
(String name) Returns Set based Multimap instance by name.<K,
V> RSetMultimapReactive <K, V> getSetMultimap
(String name, Codec codec) Returns Set based Multimap instance by name using provided codec for both map keys and values.getShardedTopic
(String name) Returns Sharded Topic instance by name.getShardedTopic
(String name, Codec codec) Returns Sharded Topic instance by name using provided codec for messages.<K,
V> RStreamReactive <K, V> Returns stream instance byname
<K,
V> RStreamReactive <K, V> Returns stream instance byname
using providedcodec
for entries.Returns topic instance by name.
-
Method Details
-
getStream
Returns stream instance byname
Requires Redis 5.0.0 and higher.
- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- of stream- Returns:
- RStream object
-
getStream
Returns stream instance byname
using providedcodec
for entries.Requires Redis 5.0.0 and higher.
- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- - name of streamcodec
- - codec for entry- Returns:
- RStream object
-
getGeo
Returns geospatial items holder instance byname
.- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- Geo object
-
getGeo
Returns geospatial items holder instance byname
using provided codec for geospatial members.- Type Parameters:
V
- type of value- Parameters:
name
- - name of objectcodec
- - codec for value- Returns:
- Geo object
-
getSetMultimap
Returns Set based Multimap instance by name.- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- - name of object- Returns:
- SetMultimap object
-
getSetMultimap
Returns Set based Multimap instance by name using provided codec for both map keys and values.- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- - name of objectcodec
- - codec for keys and values- Returns:
- SetMultimap object
-
getSetCache
Returns set-based cache instance byname
. Uses map (value_hash, value) under the hood for minimal memory consumption. Supports value eviction with a given TTL value.If eviction is not required then it's better to use regular map
getSet(String, Codec)
.- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- SetCache object
-
getSetCache
Returns set-based cache instance byname
using providedcodec
for values. Uses map (value_hash, value) under the hood for minimal memory consumption. Supports value eviction with a given TTL value.If eviction is not required then it's better to use regular map
getSet(String, Codec)
.- Type Parameters:
V
- type of value- Parameters:
name
- - name of objectcodec
- - codec for values- Returns:
- SetCache object
-
getMapCache
Returns map-based cache instance byname
using providedcodec
for both cache keys and values. Supports entry eviction with a given TTL value.If eviction is not required then it's better to use regular map
getMap(String, Codec)
.- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- - name of objectcodec
- - codec for keys and values- Returns:
- MapCache object
-
getMapCache
Returns map-based cache instance byname
. Supports entry eviction with a given TTL value.If eviction is not required then it's better to use regular map
getMap(String)
.- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- - name of object- Returns:
- MapCache object
-
getBucket
Returns object holder by name- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- Bucket object
-
getBucket
-
getJsonBucket
Returns JSON data holder instance by name using provided codec.- Type Parameters:
V
- type of value- Parameters:
name
- name of objectcodec
- codec for values- Returns:
- JsonBucket object
- See Also:
-
getHyperLogLog
Returns HyperLogLog object by name- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- HyperLogLog object
-
getHyperLogLog
-
getList
Returns list instance by name.- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- List object
-
getList
-
getListMultimap
Returns List based MultiMap instance by name.- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- - name of object- Returns:
- ListMultimap object
-
getListMultimap
Returns List based MultiMap instance by name using provided codec for both map keys and values.- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- - name of objectcodec
- - codec for keys and values- Returns:
- ListMultimap object
-
getMap
Returns map instance by name.- Type Parameters:
K
- type of keyV
- type of value- Parameters:
name
- - name of object- Returns:
- Map object
-
getMap
-
getSet
Returns set instance by name.- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- Set object
-
getSet
-
getTopic
Returns topic instance by name.- Parameters:
name
- - name of object- Returns:
- Topic object
-
getTopic
-
getShardedTopic
Returns Sharded Topic instance by name.Messages are delivered to message listeners connected to the same Topic.
- Parameters:
name
- - name of object- Returns:
- Topic object
-
getShardedTopic
Returns Sharded Topic instance by name using provided codec for messages.Messages are delivered to message listeners connected to the same Topic.
- Parameters:
name
- - name of objectcodec
- - codec for message- Returns:
- Topic object
-
getQueue
Returns queue instance by name.- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- Queue object
-
getQueue
-
getBlockingQueue
Returns blocking queue instance by name.- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- BlockingQueue object
-
getBlockingQueue
-
getBlockingDeque
Returns blocking deque instance by name.- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- BlockingDeque object
-
getBlockingDeque
-
getDeque
Returns deque instance by name.- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- Deque object
-
getDeque
-
getAtomicLong
Returns "atomic long" instance by name.- Parameters:
name
- - name of object- Returns:
- AtomicLong object
-
getAtomicDouble
Returns atomicDouble instance by name.- Parameters:
name
- - name of object- Returns:
- AtomicDouble object
-
getScoredSortedSet
Returns Redis Sorted Set instance by name- Type Parameters:
V
- type of value- Parameters:
name
- - name of object- Returns:
- ScoredSortedSet object
-
getScoredSortedSet
-
getLexSortedSet
Returns String based Redis Sorted Set instance by name All elements are inserted with the same score during addition, in order to force lexicographical ordering- Parameters:
name
- - name of object- Returns:
- LexSortedSet object
-
getBitSet
Returns bitSet instance by name.- Parameters:
name
- of bitSet- Returns:
- BitSet object
-
getScript
RScriptReactive getScript()Returns script operations object- Returns:
- Script object
-
getScript
Returns script operations object using provided codec.- Parameters:
codec
- - codec for params and result- Returns:
- Script object
-
getFunction
RFunctionReactive getFunction()Returns interface for Redis Function feature- Returns:
- function object
-
getFunction
Returns interface for Redis Function feature using provided codec- Parameters:
codec
- - codec for params and result- Returns:
- function interface
-
getKeys
RKeysReactive getKeys()Returns keys operations. Each of Redis/Redisson object associated with own key- Returns:
- Keys object
-
execute
reactor.core.publisher.Mono<BatchResult<?>> execute()Executes all operations accumulated during Reactive methods invocations Reactivehronously. In cluster configurations operations grouped by slot ids so may be executed on different servers. Thus command execution order could be changed- Returns:
- List with result object for each command
-
discard
reactor.core.publisher.Mono<Void> discard()Discard batched commands and release allocated buffers used for parameters encoding.- Returns:
- void
-