Package | Description |
---|---|
org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
|
org.springframework.data.redis.connection.jedis |
Connection package for Jedis library.
|
org.springframework.data.redis.connection.lettuce |
Connection package for Lettuce Redis client.
|
Modifier and Type | Interface and Description |
---|---|
interface |
DefaultedRedisClusterConnection |
interface |
DefaultedRedisConnection
DefaultedRedisConnection provides method delegates to Redis*Command interfaces accessible via
RedisConnection . |
interface |
RedisClusterConnection
RedisClusterConnection allows sending commands to dedicated nodes within the cluster. |
interface |
RedisConnection
A connection to a Redis server.
|
interface |
StringRedisConnection
Convenience extension of
RedisConnection that accepts and returns String s instead of byte arrays. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractRedisConnection |
class |
DefaultStringRedisConnection
Default implementation of
StringRedisConnection . |
Modifier and Type | Class and Description |
---|---|
class |
JedisClusterConnection
RedisClusterConnection implementation on top of JedisCluster . |
class |
JedisConnection
RedisConnection implementation on top of Jedis library. |
Modifier and Type | Class and Description |
---|---|
class |
LettuceClusterConnection
RedisClusterConnection implementation on top of Lettuce
Redis client. |
class |
LettuceConnection
RedisConnection implementation on top of Lettuce Redis
client. |
Copyright © 2011–2019 Pivotal Software, Inc.. All rights reserved.