RedisClient for regular and sentinel operations.See: Description
| Interface | Description |
|---|---|
| BaseRedisAsyncConnection<K,V> |
Basic asynchronous executed commands.
|
| BaseRedisConnection<K,V> |
Basic synchronous executed commands.
|
| ConnectionId |
Connection identifier.
|
| ConnectionPoint |
Interface for a connection point described with a host and port or socket.
|
| ReadFrom.Nodes |
Descriptor of nodes that are available for the current read operation.
|
| RedisAsyncConnection<K,V> |
Complete async Redis API with 400+ Methods.
|
| RedisChannelInitializer |
Channel initializer to set up the transport before a Redis connection can be used.
|
| RedisChannelWriter<K,V> |
Writer for a channel.
|
| RedisClusterAsyncConnection<K,V> |
Complete asynchronous cluster Redis API with 400+ Methods..
|
| RedisClusterConnection<K,V> |
Complete synchronous cluster Redis API with 400+ Methods..
|
| RedisConnection<K,V> |
Complete synchronous Redis API with 400+ Methods.
|
| RedisConnectionStateListener |
Simple interface for Redis connection state monitoring.
|
| RedisFuture<V> |
Redis Future, extends a Listenable Future (Notification on Complete).
|
| RedisGeoAsyncConnection<K,V> |
Synchronous executed commands for Geo-Commands.
|
| RedisGeoConnection<K,V> |
Synchronous executed commands for Geo-Commands.
|
| RedisHashesAsyncConnection<K,V> |
Asynchronous executed commands for Hashes (Key-Value pairs).
|
| RedisHashesConnection<K,V> |
Synchronous executed commands for Hashes (Key-Value pairs).
|
| RedisHLLAsyncConnection<K,V> |
Asynchronous executed commands for HyperLogLog (PF* commands).
|
| RedisHLLConnection<K,V> |
Synchronous executed commands for HyperLogLog (PF* commands).
|
| RedisKeysAsyncConnection<K,V> |
Asynchronous executed commands for Keys (Key manipulation/querying).
|
| RedisKeysConnection<K,V> |
Synchronous executed commands for Keys (Key manipulation/querying).
|
| RedisListsAsyncConnection<K,V> |
Asynchronous executed commands for Lists.
|
| RedisListsConnection<K,V> |
Synchronous executed commands for Lists.
|
| RedisScriptingAsyncConnection<K,V> |
Asynchronous executed commands for Scripting.
|
| RedisScriptingConnection<K,V> |
Synchronous executed commands for Scripting.
|
| RedisSentinelAsyncConnection<K,V> |
Asynchronous executed commands for Sentinel.
|
| RedisServerAsyncConnection<K,V> |
Asynchronous executed commands for Server Control.
|
| RedisServerConnection<K,V> |
Synchronous executed commands for Server Control.
|
| RedisSetsAsyncConnection<K,V> |
Asynchronous executed commands for Sets.
|
| RedisSetsConnection<K,V> |
Synchronous executed commands for Sets.
|
| RedisSortedSetsAsyncConnection<K,V> |
Asynchronous executed commands for Sorted Sets.
|
| RedisSortedSetsConnection<K,V> |
Synchronous executed commands for Sorted Sets.
|
| RedisStringsAsyncConnection<K,V> |
Asynchronous executed commands for Strings.
|
| RedisStringsConnection<K,V> |
Synchronous executed commands for Strings.
|
| Class | Description |
|---|---|
| AbstractRedisClient |
Base Redis client.
|
| ClientOptions |
Client Options to control the behavior of
RedisClient. |
| ClientOptions.Builder |
Builder for
ClientOptions. |
| ConnectionBuilder |
Connection builder for connections.
|
| ConnectionEvents |
Close Events Facility.
|
| ConnectionEvents.Activated |
Internal event when a channel is activated.
|
| ConnectionEvents.Close |
Internal event when a channel is closed.
|
| ConnectionEvents.PrepareClose |
Internal event before a channel is closed.
|
| EpollProvider |
Wraps and provides Epoll classes.
|
| GeoArgs |
Args for GEORADIUS and GEORADIUSBYMEMBER commands.
|
| GeoCoordinates |
A tuple consisting of numerical geo data points to describe geo coordinates.
|
| GeoWithin<V> |
Geo element within a certain radius.
|
| JavaRuntime |
Utility to determine which Java runtime is used.
|
| KeyScanCursor<K> |
Cursor providing a list of keys.
|
| KeyValue<K,V> |
A key-value pair.
|
| KillArgs |
Argument list builder for the redis CLIENT KILL command.
|
| KillArgs.Builder |
Static builder methods.
|
| LettuceFutures |
Utility to
LettuceFutures.awaitAll(long, TimeUnit, Future[]) futures until they are done and to synchronize future execution using
LettuceFutures.awaitOrCancel(RedisCommand, long, TimeUnit). |
| LettuceStrings |
Helper for
String checks. |
| MapScanCursor<K,V> |
Scan cursor for maps.
|
| ReadFrom |
Defines from which Redis nodes data is read.
|
| RedisAsyncConnectionImpl<K,V> |
An asynchronous thread-safe connection to a redis server.
|
| RedisChannelHandler<K,V> |
Abstract base for every redis connection.
|
| RedisChannelInitializerImpl |
Channel initializer to set up the transport before a Redis connection can be used.
|
| RedisClient |
A scalable thread-safe Redis client.
|
| RedisConnectionPool<T> |
Connection pool for redis connections.
|
| RedisURI |
Redis URI.
|
| RedisURI.Builder |
Builder for Redis URI.
|
| ScanArgs |
Argument list builder for the redis scan commans (scan, hscan, sscan, zscan) .
|
| ScanArgs.Builder |
Static builder methods.
|
| ScanCursor |
Generic Cursor data structure.
|
| ScoredValue<V> |
A value and its associated score from a ZSET.
|
| ScoredValueScanCursor<V> |
Cursor providing a list of
ScoredValue |
| SortArgs |
Argument list builder for the redis SORT command.
|
| SortArgs.Builder |
Static builder methods.
|
| SslConnectionBuilder |
Connection builder for SSL connections.
|
| StreamScanCursor |
Cursor result using the Streaming API.
|
| ValueScanCursor<V> |
Cursor providing a list of values.
|
| ZAddArgs |
Argument list builder for the improved redis ZADD command starting from Redis
3.0.2.
|
| ZAddArgs.Builder | |
| ZStoreArgs |
Argument list builder for the redis ZUNIONSTORE and ZINTERSTORE commands.
|
| ZStoreArgs.Builder |
Static builder methods.
|
| Enum | Description |
|---|---|
| GeoArgs.Sort |
Sort order.
|
| GeoArgs.Unit |
Supported geo unit.
|
| ScriptOutputType |
A Lua script returns one of the following types:
ScriptOutputType.BOOLEAN boolean
ScriptOutputType.INTEGER 64-bit integer
ScriptOutputType.STATUS status string
ScriptOutputType.VALUE value
ScriptOutputType.MULTI of these types
Redis to Lua conversion table. |
| Exception | Description |
|---|---|
| RedisCommandExecutionException |
Exception for errors states reported by Redis.
|
| RedisCommandInterruptedException |
Exception thrown when the thread executing a redis command is interrupted.
|
| RedisCommandTimeoutException |
Exception thrown when the command waiting timeout is exceeded.
|
| RedisConnectionException |
Exception for connection failures.
|
| RedisException |
Exception thrown when Redis returns an error message, or when the client fails for any reason.
|
RedisClient for regular and sentinel operations.Copyright © 2016. All rights reserved.