Uses of Interface
io.lettuce.core.cluster.api.async.RedisClusterAsyncCommands
| 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.
|
-
Uses of RedisClusterAsyncCommands in io.lettuce.core
Classes in io.lettuce.core that implement RedisClusterAsyncCommands Modifier and Type Class Description classAbstractRedisAsyncCommands<K,V>An asynchronous and thread-safe API for a Redis connection.classRedisAsyncCommandsImpl<K,V>An asynchronous and thread-safe API for a Redis connection. -
Uses of RedisClusterAsyncCommands in io.lettuce.core.api.async
Subinterfaces of RedisClusterAsyncCommands in io.lettuce.core.api.async Modifier and Type Interface Description interfaceRedisAsyncCommands<K,V>A complete asynchronous and thread-safe Redis API with 400+ Methods. -
Uses of RedisClusterAsyncCommands in io.lettuce.core.cluster
Classes in io.lettuce.core.cluster that implement RedisClusterAsyncCommands Modifier and Type Class Description classRedisAdvancedClusterAsyncCommandsImpl<K,V>An advanced asynchronous and thread-safe API for a Redis Cluster connection.classRedisClusterPubSubAsyncCommandsImpl<K,V>An asynchronous and thread-safe API for a Redis pub/sub connection.Methods in io.lettuce.core.cluster that return RedisClusterAsyncCommands Modifier and Type Method Description RedisClusterAsyncCommands<K,V>RedisAdvancedClusterAsyncCommandsImpl. getConnection(String nodeId)RedisClusterAsyncCommands<K,V>RedisAdvancedClusterAsyncCommandsImpl. getConnection(String host, int port)Method parameters in io.lettuce.core.cluster with type arguments of type RedisClusterAsyncCommands Modifier and Type Method 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 matchfilter.protected <T> Map<String,CompletableFuture<T>>RedisAdvancedClusterAsyncCommandsImpl. executeOnUpstream(Function<RedisClusterAsyncCommands<K,V>,RedisFuture<T>> function)Run a command on all available masters, -
Uses of RedisClusterAsyncCommands in io.lettuce.core.cluster.api.async
Subinterfaces of RedisClusterAsyncCommands in io.lettuce.core.cluster.api.async Modifier and Type Interface Description interfaceRedisAdvancedClusterAsyncCommands<K,V>Advanced asynchronous and thread-safe Redis Cluster API.Methods in io.lettuce.core.cluster.api.async that return RedisClusterAsyncCommands Modifier and Type Method 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. -
Uses of RedisClusterAsyncCommands in io.lettuce.core.cluster.pubsub.api.async
Subinterfaces of RedisClusterAsyncCommands in io.lettuce.core.cluster.pubsub.api.async Modifier and Type Interface Description interfaceRedisClusterPubSubAsyncCommands<K,V>Asynchronous and thread-safe Redis Cluster PubSub API. -
Uses of RedisClusterAsyncCommands in io.lettuce.core.pubsub
Classes in io.lettuce.core.pubsub that implement RedisClusterAsyncCommands Modifier and Type Class Description classRedisPubSubAsyncCommandsImpl<K,V>An asynchronous and thread-safe API for a Redis pub/sub connection. -
Uses of RedisClusterAsyncCommands in io.lettuce.core.pubsub.api.async
Subinterfaces of RedisClusterAsyncCommands in io.lettuce.core.pubsub.api.async Modifier and Type Interface Description interfaceRedisPubSubAsyncCommands<K,V>Asynchronous and thread-safe Redis PubSub API.