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.
|
org.springframework.data.redis.core |
Core package for integrating Redis with Spring concepts.
|
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 |
RedisCommands
Interface defining the commands supported by Redis.
|
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 | Method and Description |
---|---|
default RedisHashCommands |
RedisConnection.hashCommands()
Get
RedisHashCommands . |
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 | Method and Description |
---|---|
RedisHashCommands |
JedisClusterConnection.hashCommands() |
RedisHashCommands |
JedisConnection.hashCommands() |
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. |
Modifier and Type | Method and Description |
---|---|
RedisHashCommands |
LettuceConnection.hashCommands() |
RedisHashCommands |
LettuceClusterConnection.hashCommands() |
Modifier and Type | Interface and Description |
---|---|
static interface |
RedisConnectionUtils.RedisConnectionProxy
Subinterface of
RedisConnection to be implemented by RedisConnection proxies. |
Copyright © 2011–2023 Pivotal Software, Inc.. All rights reserved.