barath
barath

Reputation: 842

Does Redission support pipelining to redis cluster

Does Redission support pipelining to redis cluster?

RBatch in redission can be used to perform multiple hmset commands?

Upvotes: 1

Views: 603

Answers (1)

barath
barath

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

Related Questions