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

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

Introduction

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

Usage

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

/**
 * @author Christoph Strobl
 * @author Mark Paluch
 * @since 1.7
 */
public class LettuceClusterConnection extends LettuceConnection implements DefaultedRedisClusterConnection {

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

/**
 * {@link RedisClusterConnection} implementation on top of {@link JedisCluster}.<br/>
 * Uses the native {@link JedisCluster} api where possible and falls back to direct node communication using
 * {@link Jedis} where needed.
 *
 * @author Christoph Strobl