Package org.springframework.data.redis.core

Core package for integrating Redis with Spring concepts.

See:
          Description

Interface Summary
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 Summary
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.
 

Package org.springframework.data.redis.core Description

Core package for integrating Redis with Spring concepts.

Provides template support and callback for low-level access.