Example usage for org.springframework.data.redis.connection RedisConnectionFactory interface-usage

List of usage examples for org.springframework.data.redis.connection RedisConnectionFactory interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.redis.connection RedisConnectionFactory interface-usage.

Usage

From source file com.gopivotal.cloudfoundry.test.core.FakeRedisConnectionFactory.java

/**
 * Fake RedisConnectionFactory, since we don't have "in-memory" redis (equivalent to, say, H2 database)
 * <p/>
 * Objects of this class can be used wherever auto-reconfiguration is expected to take place. If auto-reconfiguration
 * works as expected, they will be replaced with real connection factory object. If not, tests will fail as expected.
 */

From source file org.springframework.data.redis.connection.rjc.RjcConnectionFactory.java

/**
 * Connection factory creating <a href="http://github.com/e-mzungu/rjc/">rjc</a> based connections.
 * 
 * @author Costin Leau
 */
public class RjcConnectionFactory implements InitializingBean, DisposableBean, RedisConnectionFactory {

From source file org.solq.dht.db.redis.service.JedisConnectionFactory.java

/**
 * Connection factory creating
 * <a href="http://github.com/xetorthio/jedis">Jedis</a> based connections.
 * 
 * @author Costin Leau
 * @author Thomas Darimont

From source file org.springframework.data.redis.connection.jedis.JedisConnectionFactory.java

/**
 * Connection factory creating <a href="http://github.com/xetorthio/jedis">Jedis</a> based connections.
 * 
 * @author Costin Leau
 * @author Thomas Darimont
 * @author Christoph Strobl

From source file org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.java

/**
 * Connection factory creating <a href="http://github.com/mp911de/lettuce">Lettuce</a>-based connections.
 * <p>
 * This factory creates a new {@link LettuceConnection} on each call to {@link #getConnection()}. Multiple
 * {@link LettuceConnection}s share a single thread-safe native connection by default.
 * <p>