Redisson provides API to manage Redis or Valkey nodes.

Code example of operations with Cluster setup:

  1. RedisCluster cluster = redisson.getRedisNodes(RedisNodes.CLUSTER);
  2. cluster.pingAll();
  3. Collection<RedisClusterMaster> masters = cluster.getMasters();
  4. Collection<RedisClusterMaster> slaves = cluster.getSlaves();

Code example of operations with Master Slave setup:

  1. RedisMasterSlave masterSlave = redisson.getRedisNodes(RedisNodes.MASTER_SLAVE);
  2. masterSlave.pingAll();
  3. RedisMaster master = masterSlave.getMaster();
  4. Collection<RedisSlave> slaves = masterSlave.getSlaves();

Code example of operations with Sentinel setup:

  1. RedisSentinelMasterSlave sentinelMasterSlave = redisson.getRedisNodes(RedisNodes.SENTINEL_MASTER_SLAVE);
  2. sentinelMasterSlave.pingAll();
  3. RedisMaster master = sentinelMasterSlave.getMaster();
  4. Collection<RedisSlave> slaves = sentinelMasterSlave.getSlaves();
  5. Collection<RedisSentinel> sentinels = sentinelMasterSlave.getSentinels();

Code example of operations with Single setup:

  1. RedisSingle single = redisson.getRedisNodes(RedisNodes.SINGLE);
  2. single.pingAll();
  3. RedisMaster instance = single.getInstance();