Reputation: 842
Does Redission support pipelining to redis cluster?
RBatch in redission can be used to perform multiple hmset commands?
Upvotes: 1
Views: 603
Reputation: 842
Yes, redisson RBatch batch = client.createBatch()
does the pipelining in Redis cluster mode.
Verified this on redis cluster mode by submitting multiple fastPutAsync
commands on single batch.
Upvotes: 2