See: Description
| Interface | Description |
|---|---|
| BoundHashOperations<H,HK,HV> |
Hash operations bound to a certain key.
|
| BoundKeyOperations<K> |
Operations over a Redis key.
|
| BoundListOperations<K,V> |
List operations bound to a certain key.
|
| BoundSetOperations<K,V> |
Set operations bound to a certain key.
|
| BoundValueOperations<K,V> |
Value (or String in Redis terminology) operations bound to a certain key.
|
| BoundZSetOperations<K,V> |
ZSet (or SortedSet) operations bound to a certain key.
|
| BulkMapper<T,V> |
Mapper translating Redis bulk value responses (typically returned by a sort query) to actual objects.
|
| Cursor<T> | |
| HashOperations<H,HK,HV> |
Redis map specific operations working on a hash.
|
| HyperLogLogOperations<K,V> | |
| ListOperations<K,V> |
Redis list specific operations.
|
| RedisCallback<T> |
Callback interface for Redis 'low level' code.
|
| RedisOperations<K,V> |
Interface that specified a basic set of Redis operations, implemented by
RedisTemplate. |
| SessionCallback<T> |
Callback executing all operations against a surrogate 'session' (basically against the same underlying Redis
connection).
|
| SetOperations<K,V> |
Redis set specific operations.
|
| ValueOperations<K,V> |
Redis operations for simple (or in Redis terminology 'string') values.
|
| ZSetOperations<K,V> |
Redis ZSet/sorted set specific operations.
|
| ZSetOperations.TypedTuple<V> |
Typed ZSet tuple.
|
| Class | Description |
|---|---|
| ConvertingCursor<S,T> |
ConvertingCursor wraps a given cursor and applies given Converter to items prior to returning them. |
| DefaultHyperLogLogOperations<K,V> | |
| DefaultTypedTuple<V> |
Default implementation of TypedTuple.
|
| KeyBoundCursor<T> | |
| RedisAccessor |
Base class for
RedisTemplate defining common properties. |
| RedisConnectionUtils |
Helper class featuring
RedisConnection handling, allowing for reuse of instances within
'transactions'/scopes. |
| RedisTemplate<K,V> |
Helper class that simplifies Redis data access code.
|
| ScanCursor<T> |
Redis client agnostic
Cursor implementation continuously loading additional results from Redis server until
reaching its starting point zero. |
| ScanIteration<T> |
ScanIteration holds the values contained in Redis Multibulk reply on exectuting SCAN
command. |
| ScanOptions |
Options to be used for with SCAN command.
|
| ScanOptions.ScanOptionsBuilder | |
| StringRedisTemplate |
String-focused extension of RedisTemplate.
|
| TimeoutUtils |
Helper class featuring methods for calculating Redis timeouts
|
| Enum | Description |
|---|---|
| RedisCommand |