Multiple commands can be sent in a batch using RBatch object in a single network call. Command batches allows to reduce the overall execution time of a group of commands. In Redis or Valkey this approach called Pipelining. Follow options could be supplied during object creation:

  1. BatchOptions options = BatchOptions.defaults()
  2. // Sets execution mode
  3. //
  4. // ExecutionMode.REDIS_READ_ATOMIC - Store batched invocations in Redis and execute them atomically as a single command
  5. //
  6. // ExecutionMode.REDIS_WRITE_ATOMIC - Store batched invocations in Redis and execute them atomically as a single command
  7. //
  8. // ExecutionMode.IN_MEMORY - Store batched invocations in memory on Redisson side and execute them on Redis. Default mode
  9. //
  10. // ExecutionMode.IN_MEMORY_ATOMIC - Store batched invocations on Redisson side and executes them atomically on Redis or Valkey as a single command
  11. .executionMode(ExecutionMode.IN_MEMORY)
  12. // Inform Redis or Valkey not to send reply back to client. This allows to save network traffic for commands with batch with big
  13. .skipResult()
  14. // Synchronize write operations execution across defined amount of Redis or Valkey slave nodes
  15. //
  16. // sync with 2 slaves with 1 second for timeout
  17. .syncSlaves(2, 1, TimeUnit.SECONDS)
  18. // Response timeout
  19. .responseTimeout(2, TimeUnit.SECONDS)
  20. // Retry interval for each attempt to send Redis or Valkey commands batch
  21. .retryInterval(2, TimeUnit.SECONDS);
  22. // Attempts amount to re-send Redis or Valkey commands batch if it wasn't sent due to network delays or other issues
  23. .retryAttempts(4);

Result Batch object contains follow data:

  1. // list of result objects per command in batch
  2. List<?> responses = res.getResponses();
  3. // amount of successfully synchronized slaves during batch execution
  4. int slaves = res.getSyncedSlaves();

Code example for Sync / Async mode:

  1. RBatch batch = redisson.createBatch(BatchOptions.defaults());
  2. batch.getMap("test1").fastPutAsync("1", "2");
  3. batch.getMap("test2").fastPutAsync("2", "3");
  4. batch.getMap("test3").putAsync("2", "5");
  5. RFuture<Long> future = batch.getAtomicLong("counter").incrementAndGetAsync();
  6. batch.getAtomicLong("counter").incrementAndGetAsync();
  7. // result could be acquired through RFuture object returned by batched method
  8. // or
  9. // through result list by corresponding index
  10. future.whenComplete((res, exception) -> {
  11. // ...
  12. });
  13. BatchResult res = batch.execute();
  14. // or
  15. Future<BatchResult> resFuture = batch.executeAsync();
  16. List<?> list = res.getResponses();
  17. Long result = list.get(4);

Code example of Reactive interface usage:

  1. RBatchReactive batch = redisson.createBatch(BatchOptions.defaults());
  2. batch.getMap("test1").fastPut("1", "2");
  3. batch.getMap("test2").fastPut("2", "3");
  4. batch.getMap("test3").put("2", "5");
  5. Mono<Long> commandMono = batch.getAtomicLongAsync("counter").incrementAndGet();
  6. batch.getAtomicLongAsync("counter").incrementAndGet();
  7. // result could be acquired through Reactive object returned by batched method
  8. // or
  9. // through result list by corresponding index
  10. commandMono.doOnNext(res -> {
  11. // ...
  12. }).subscribe();
  13. Mono<BatchResult> resMono = batch.execute();
  14. resMono.doOnNext(res -> {
  15. List<?> list = res.getResponses();
  16. Long result = list.get(4);
  17. // ...
  18. }).subscribe();

Code example of RxJava3 interface usage:

  1. RBatchRx batch = redisson.createBatch(BatchOptions.defaults());
  2. batch.getMap("test1").fastPut("1", "2");
  3. batch.getMap("test2").fastPut("2", "3");
  4. batch.getMap("test3").put("2", "5");
  5. Single<Long> commandSingle = batch.getAtomicLongAsync("counter").incrementAndGet();
  6. batch.getAtomicLongAsync("counter").incrementAndGet();
  7. // result could be acquired through RxJava3 object returned by batched method
  8. // or
  9. // through result list by corresponding index
  10. commandSingle.doOnSuccess(res -> {
  11. // ...
  12. }).subscribe();
  13. Mono<BatchResult> resSingle = batch.execute();
  14. resSingle.doOnSuccess(res -> {
  15. List<?> list = res.getResponses();
  16. Long result = list.get(4);
  17. // ...
  18. }).subscribe();

In cluster environment batch executed in map\reduce way. It aggregates commands for each node and sends them simultaneously, then result got from each node added to common result list.