1

Does Redission support pipelining to redis cluster?

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

barath
  • 762
  • 1
  • 8
  • 26

1 Answers1

2

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.

barath
  • 762
  • 1
  • 8
  • 26