org.springframework.data.redis.support.collections
Interface RedisStore

All Superinterfaces:
BoundKeyOperations<String>
All Known Subinterfaces:
RedisCollection<E>, RedisList<E>, RedisMap<K,V>, RedisSet<E>, RedisZSet<E>
All Known Implementing Classes:
AbstractRedisCollection, DefaultRedisList, DefaultRedisMap, DefaultRedisSet, DefaultRedisZSet, RedisProperties

public interface RedisStore
extends BoundKeyOperations<String>

Basic interface for Redis-based collections. Offers access to the RedisOperations entity used for executing commands against the backing store.


Method Summary
 RedisOperations<String,?> getOperations()
          Returns the underlying Redis operations used by the backing implementation.
 
Methods inherited from interface org.springframework.data.redis.core.BoundKeyOperations
expire, expireAt, getExpire, getKey, getType, persist, rename
 

Method Detail

getOperations

RedisOperations<String,?> getOperations()
Returns the underlying Redis operations used by the backing implementation.

Returns:
operations