Redisson uses high-perfomance async and lock-free Java client for Redis or Valkey. It supports both async and sync modes. The most popular use case is to execute a command not supported by Redisson yet. Please make sure that required command is not supported already with Redis or Valkey command mapping list. org.redisson.client.protocol.RedisCommands - contains all available commands. Code example:

  1. // Use shared EventLoopGroup only if multiple clients are used
  2. EventLoopGroup group = new NioEventLoopGroup();
  3. RedisClientConfig config = new RedisClientConfig();
  4. config.setAddress("redis://localhost:6379") // or rediss:// for ssl connection
  5. .setPassword("myPassword")
  6. .setDatabase(0)
  7. .setClientName("myClient")
  8. .setGroup(group);
  9. RedisClient client = RedisClient.create(config);
  10. RedisConnection conn = client.connect();
  11. //or
  12. CompletionStage<RedisConnection> connFuture = client.connectAsync();
  13. // execute SET command in sync way
  14. conn.sync(StringCodec.INSTANCE, RedisCommands.SET, "test", 0);
  15. // execute GET command in async way
  16. conn.async(StringCodec.INSTANCE, RedisCommands.GET, "test");
  17. conn.close()
  18. // or
  19. conn.closeAsync()
  20. client.shutdown();
  21. // or
  22. client.shutdownAsync();