Package | Description |
---|---|
io.lettuce.core.cluster |
Client for Redis Cluster, see
RedisClusterClient . |
io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
io.lettuce.core.cluster.api.reactive |
Redis Cluster API for reactive command execution.
|
io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
Modifier and Type | Class and Description |
---|---|
class |
StatefulRedisClusterConnectionImpl<K,V>
A thread-safe connection to a Redis Cluster.
|
Modifier and Type | Method and Description |
---|---|
StatefulRedisClusterConnection<String,String> |
RedisClusterClient.connect()
Connect to a Redis Cluster and treat keys and values as UTF-8 strings.
|
<K,V> StatefulRedisClusterConnection<K,V> |
RedisClusterClient.connect(RedisCodec<K,V> codec)
Connect to a Redis Cluster.
|
StatefulRedisClusterConnection<K,V> |
RedisAdvancedClusterAsyncCommandsImpl.getStatefulConnection() |
StatefulRedisClusterConnection<K,V> |
RedisAdvancedClusterReactiveCommandsImpl.getStatefulConnection() |
Modifier and Type | Method and Description |
---|---|
<K,V> CompletableFuture<StatefulRedisClusterConnection<K,V>> |
RedisClusterClient.connectAsync(RedisCodec<K,V> codec)
Connect asynchronously to a Redis Cluster.
|
Constructor and Description |
---|
RedisAdvancedClusterAsyncCommandsImpl(StatefulRedisClusterConnection<K,V> connection,
RedisCodec<K,V> codec)
Initialize a new connection.
|
RedisAdvancedClusterReactiveCommandsImpl(StatefulRedisClusterConnection<K,V> connection,
RedisCodec<K,V> codec)
Initialize a new connection.
|
Modifier and Type | Method and Description |
---|---|
StatefulRedisClusterConnection<K,V> |
RedisAdvancedClusterAsyncCommands.getStatefulConnection() |
Modifier and Type | Method and Description |
---|---|
StatefulRedisClusterConnection<K,V> |
RedisAdvancedClusterReactiveCommands.getStatefulConnection() |
Modifier and Type | Method and Description |
---|---|
StatefulRedisClusterConnection<K,V> |
RedisAdvancedClusterCommands.getStatefulConnection() |
Copyright © 2019 lettuce.io. All rights reserved.