Spring Data Key-Value

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

Packages that use RedisConnectionFactory
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. 
org.springframework.data.keyvalue.redis.listener Base package for Redis message listener / pubsub container facility 
org.springframework.data.keyvalue.redis.support.atomic Small toolkit mirroring the java.util.atomic package in Redis. 
 

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

Classes in org.springframework.data.keyvalue.redis.connection.jedis that implement RedisConnectionFactory
 class JedisConnectionFactory
          Connection factory creating Jedis based connections.
 

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

Classes in org.springframework.data.keyvalue.redis.connection.jredis that implement RedisConnectionFactory
 class JredisConnectionFactory
          Connection factory using creating JRedis based connections.
 

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

Classes in org.springframework.data.keyvalue.redis.connection.rjc that implement RedisConnectionFactory
 class RjcConnectionFactory
          Connection factory creating rjc based connections.
 

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

Methods in org.springframework.data.keyvalue.redis.core that return RedisConnectionFactory
 RedisConnectionFactory RedisAccessor.getConnectionFactory()
          Returns the connectionFactory.
 

Methods in org.springframework.data.keyvalue.redis.core with parameters of type RedisConnectionFactory
static RedisConnection RedisConnectionUtils.bindConnection(RedisConnectionFactory factory)
          Binds a new Redis connection (from the given factory) to the current thread, if none is already bound.
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.
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.
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).
 void RedisAccessor.setConnectionFactory(RedisConnectionFactory connectionFactory)
          Sets the connection factory.
static void RedisConnectionUtils.unbindConnection(RedisConnectionFactory factory)
          Unbinds and closes the connection (if any) associated with the given factory.
 

Constructors in org.springframework.data.keyvalue.redis.core with parameters of type RedisConnectionFactory
RedisTemplate(RedisConnectionFactory connectionFactory)
          Constructs a new RedisTemplate instance and automatically initializes the template.
StringRedisTemplate(RedisConnectionFactory connectionFactory)
          Constructs a new StringRedisTemplate instance.
 

Uses of RedisConnectionFactory in org.springframework.data.keyvalue.redis.listener
 

Methods in org.springframework.data.keyvalue.redis.listener that return RedisConnectionFactory
 RedisConnectionFactory RedisMessageListenerContainer.getConnectionFactory()
          Returns the connectionFactory.
 

Methods in org.springframework.data.keyvalue.redis.listener with parameters of type RedisConnectionFactory
 void RedisMessageListenerContainer.setConnectionFactory(RedisConnectionFactory connectionFactory)
           
 

Uses of RedisConnectionFactory in org.springframework.data.keyvalue.redis.support.atomic
 

Constructors in org.springframework.data.keyvalue.redis.support.atomic with parameters of type RedisConnectionFactory
RedisAtomicInteger(String redisCounter, RedisConnectionFactory factory)
          Constructs a new RedisAtomicInteger instance.
RedisAtomicInteger(String redisCounter, RedisConnectionFactory factory, int initialValue)
          Constructs a new RedisAtomicInteger instance.
RedisAtomicLong(String redisCounter, RedisConnectionFactory factory)
          Constructs a new RedisAtomicLong instance.
RedisAtomicLong(String redisCounter, RedisConnectionFactory factory, long initialValue)
          Constructs a new RedisAtomicLong instance.
 


Spring Data Key-Value

Copyright © 2010-2011 SpringSource. All Rights Reserved.