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.
|
| HashOperations<H,HK,HV> |
Redis map specific operations working on a hash.
|
| 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 |
|---|---|
| DefaultTypedTuple<V> |
Default implementation of TypedTuple.
|
| 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.
|
| StringRedisTemplate |
String-focused extension of RedisTemplate.
|
| TimeoutUtils |
Helper class featuring methods for calculating Redis timeouts
|
| Enum | Description |
|---|---|
| RedisCommand |