Skip navigation links
Lettuce

Package io.lettuce.core.masterslave

Deprecated.
will be moved to masterreplica package with version 6.
Client support for Redis Master/Slave setups.

See: Description

Package io.lettuce.core.masterslave Description

Client support for Redis Master/Slave setups. MasterSlave supports self-managed, Redis Sentinel-managed, AWS ElastiCache and Azure Redis managed Master/Slave setups. Connections can be obtained by providing the RedisClient, a RedisURI and a RedisCodec.

   RedisClient client = RedisClient.create();
   StatefulRedisMasterSlaveConnection connection = MasterSlave.connect(client,
                                                                      RedisURI.create("redis://localhost"),
                                                                      StringCodec.UTF8);
   // ...

   connection.close();
   client.shutdown();
 
Skip navigation links
Lettuce

Copyright © 2019 lettuce.io. All rights reserved.