Spring Data Key-Value

Uses of Interface
org.springframework.data.keyvalue.redis.connection.RedisConnection

Packages that use RedisConnection
org.springframework.data.keyvalue.redis.connection Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries. 
org.springframework.data.keyvalue.redis.connection.jedis Connection package for Jedis library. 
org.springframework.data.keyvalue.redis.connection.jredis Connection package for JRedis library. 
org.springframework.data.keyvalue.redis.connection.rjc Connection package for RJC library. 
org.springframework.data.keyvalue.redis.core Core package for integrating Redis with Spring concepts. 
 

Uses of RedisConnection in org.springframework.data.keyvalue.redis.connection
 

Subinterfaces of RedisConnection in org.springframework.data.keyvalue.redis.connection
 interface StringRedisConnection
          Convenience extension of RedisConnection that accepts and returns Strings instead of byte arrays.
 

Classes in org.springframework.data.keyvalue.redis.connection that implement RedisConnection
 class DefaultStringRedisConnection
          Default implementation of StringRedisConnection.
 

Methods in org.springframework.data.keyvalue.redis.connection that return RedisConnection
 RedisConnection RedisConnectionFactory.getConnection()
          Provides a suitable connection for interacting with Redis.
 

Constructors in org.springframework.data.keyvalue.redis.connection with parameters of type RedisConnection
DefaultStringRedisConnection(RedisConnection connection)
          Constructs a new DefaultStringRedisConnection instance.
DefaultStringRedisConnection(RedisConnection connection, RedisSerializer<String> serializer)
          Constructs a new DefaultStringRedisConnection instance.
 

Uses of RedisConnection in org.springframework.data.keyvalue.redis.connection.jedis
 

Classes in org.springframework.data.keyvalue.redis.connection.jedis that implement RedisConnection
 class JedisConnection
          RedisConnection implementation on top of Jedis library.
 

Uses of RedisConnection in org.springframework.data.keyvalue.redis.connection.jredis
 

Classes in org.springframework.data.keyvalue.redis.connection.jredis that implement RedisConnection
 class JredisConnection
          RedisConnection implementation on top of JRedis library.
 

Methods in org.springframework.data.keyvalue.redis.connection.jredis that return RedisConnection
 RedisConnection JredisConnectionFactory.getConnection()
           
protected  RedisConnection JredisConnectionFactory.postProcessConnection(JredisConnection connection)
          Post process a newly retrieved connection.
 

Uses of RedisConnection in org.springframework.data.keyvalue.redis.connection.rjc
 

Classes in org.springframework.data.keyvalue.redis.connection.rjc that implement RedisConnection
 class RjcConnection
          RedisConnection implementation on top of rjc library.
 

Methods in org.springframework.data.keyvalue.redis.connection.rjc that return RedisConnection
 RedisConnection RjcConnectionFactory.getConnection()
           
 

Uses of RedisConnection in org.springframework.data.keyvalue.redis.core
 

Methods in org.springframework.data.keyvalue.redis.core that return RedisConnection
static RedisConnection RedisConnectionUtils.bindConnection(RedisConnectionFactory factory)
          Binds a new Redis connection (from the given factory) to the current thread, if none is already bound.
protected  RedisConnection RedisTemplate.createRedisConnectionProxy(RedisConnection pm)
           
static RedisConnection RedisConnectionUtils.doGetConnection(RedisConnectionFactory factory, boolean allowCreate, boolean bind)
          Gets a Redis connection.
static RedisConnection RedisConnectionUtils.getConnection(RedisConnectionFactory factory)
          Gets a Redis connection from the given factory.
protected  RedisConnection StringRedisTemplate.preProcessConnection(RedisConnection connection, boolean existingConnection)
           
protected  RedisConnection RedisTemplate.preProcessConnection(RedisConnection connection, boolean existingConnection)
          Processes the connection (before any settings are executed on it).
 

Methods in org.springframework.data.keyvalue.redis.core with parameters of type RedisConnection
protected  RedisConnection RedisTemplate.createRedisConnectionProxy(RedisConnection pm)
           
 T RedisCallback.doInRedis(RedisConnection connection)
          Gets called by RedisTemplate with an active Redis connection.
static boolean RedisConnectionUtils.isConnectionTransactional(RedisConnection conn, RedisConnectionFactory connFactory)
          Return whether the given Redis connection is transactional, that is, bound to the current thread by Spring's transaction facilities.
protected
<T> T
RedisTemplate.postProcessResult(T result, RedisConnection conn, boolean existingConnection)
           
protected  RedisConnection StringRedisTemplate.preProcessConnection(RedisConnection connection, boolean existingConnection)
           
protected  RedisConnection RedisTemplate.preProcessConnection(RedisConnection connection, boolean existingConnection)
          Processes the connection (before any settings are executed on it).
static void RedisConnectionUtils.releaseConnection(RedisConnection conn, RedisConnectionFactory factory)
          Closes the given connection, created via the given factory if not managed externally (i.e. not bound to the thread).
 


Spring Data Key-Value

Copyright © 2010-2011 SpringSource. All Rights Reserved.