Package | Description |
---|---|
io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
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.pubsub.api.async |
Redis Cluster Pub/Sub API for asynchronous executed commands.
|
io.lettuce.core.pubsub |
Pub/Sub connection classes.
|
io.lettuce.core.pubsub.api.async |
Pub/Sub Redis API for asynchronous executed commands.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractRedisAsyncCommands<K,V>
An asynchronous and thread-safe API for a Redis connection.
|
class |
RedisAsyncCommandsImpl<K,V>
An asynchronous and thread-safe API for a Redis connection.
|
Modifier and Type | Interface and Description |
---|---|
interface |
RedisAsyncCommands<K,V>
A complete asynchronous and thread-safe Redis API with 400+ Methods.
|
Modifier and Type | Class and Description |
---|---|
class |
RedisAdvancedClusterAsyncCommandsImpl<K,V>
An advanced asynchronous and thread-safe API for a Redis Cluster connection.
|
class |
RedisClusterPubSubAsyncCommandsImpl<K,V>
An asynchronous and thread-safe API for a Redis pub/sub connection.
|
Modifier and Type | Method and Description |
---|---|
RedisClusterAsyncCommands<K,V> |
RedisAdvancedClusterAsyncCommandsImpl.getConnection(String nodeId) |
RedisClusterAsyncCommands<K,V> |
RedisAdvancedClusterAsyncCommandsImpl.getConnection(String host,
int port) |
Modifier and Type | Method and Description |
---|---|
protected <T> Map<String,CompletableFuture<T>> |
RedisAdvancedClusterAsyncCommandsImpl.executeOnNodes(Function<RedisClusterAsyncCommands<K,V>,RedisFuture<T>> function,
Function<RedisClusterNode,Boolean> filter)
Run a command on all available nodes that match
filter . |
protected <T> Map<String,CompletableFuture<T>> |
RedisAdvancedClusterAsyncCommandsImpl.executeOnUpstream(Function<RedisClusterAsyncCommands<K,V>,RedisFuture<T>> function)
Run a command on all available masters,
|
Modifier and Type | Interface and Description |
---|---|
interface |
RedisAdvancedClusterAsyncCommands<K,V>
Advanced asynchronous and thread-safe Redis Cluster API.
|
Modifier and Type | Method and Description |
---|---|
RedisClusterAsyncCommands<K,V> |
RedisAdvancedClusterAsyncCommands.getConnection(String nodeId)
Retrieve a connection to the specified cluster node using the nodeId.
|
RedisClusterAsyncCommands<K,V> |
RedisAdvancedClusterAsyncCommands.getConnection(String host,
int port)
Retrieve a connection to the specified cluster node using host and port.
|
Modifier and Type | Interface and Description |
---|---|
interface |
RedisClusterPubSubAsyncCommands<K,V>
Asynchronous and thread-safe Redis Cluster PubSub API.
|
Modifier and Type | Class and Description |
---|---|
class |
RedisPubSubAsyncCommandsImpl<K,V>
An asynchronous and thread-safe API for a Redis pub/sub connection.
|
Modifier and Type | Interface and Description |
---|---|
interface |
RedisPubSubAsyncCommands<K,V>
Asynchronous and thread-safe Redis PubSub API.
|
Copyright © 2023 lettuce.io. All rights reserved.