| Package | Description |
|---|---|
| com.lambdaworks.redis |
The redis client package containing
RedisClient for regular and sentinel operations. |
| com.lambdaworks.redis.cluster |
Client for Redis Cluster, see
RedisClusterClient. |
| com.lambdaworks.redis.pubsub |
Pub/Sub connection classes.
|
| com.lambdaworks.redis.pubsub.api.async |
PubSub Redis API for asynchronous executed commands.
|
| com.lambdaworks.redis.pubsub.api.rx |
PubSub Redis API for reactive commands.
|
| com.lambdaworks.redis.pubsub.api.sync |
PubSub Redis API for synchronous executed commands.
|
| Modifier and Type | Method and Description |
|---|---|
StatefulRedisPubSubConnection<String,String> |
RedisClient.connectPubSub()
Open a new pub/sub connection to a Redis server that treats keys and values as UTF-8 strings.
|
<K,V> StatefulRedisPubSubConnection<K,V> |
RedisClient.connectPubSub(RedisCodec<K,V> codec)
|
<K,V> StatefulRedisPubSubConnection<K,V> |
RedisClient.connectPubSub(RedisCodec<K,V> codec,
RedisURI redisURI)
|
StatefulRedisPubSubConnection<String,String> |
RedisClient.connectPubSub(RedisURI redisURI)
Open a new pub/sub connection to a Redis server using the supplied
RedisURI that treats keys and values as UTF-8
strings. |
| Modifier and Type | Method and Description |
|---|---|
StatefulRedisPubSubConnection<String,String> |
RedisClusterClient.connectPubSub()
Connect to a Redis Cluster using pub/sub connections and treat keys and values as UTF-8 strings.
|
<K,V> StatefulRedisPubSubConnection<K,V> |
RedisClusterClient.connectPubSub(RedisCodec<K,V> codec)
Connect to a Redis Cluster using pub/sub connections.
|
| Modifier and Type | Class and Description |
|---|---|
class |
StatefulRedisPubSubConnectionImpl<K,V>
An thread-safe pub/sub connection to a Redis server.
|
| Modifier and Type | Method and Description |
|---|---|
StatefulRedisPubSubConnection<K,V> |
RedisPubSubReactiveCommandsImpl.getStatefulConnection() |
StatefulRedisPubSubConnection<K,V> |
RedisPubSubAsyncCommandsImpl.getStatefulConnection() |
| Constructor and Description |
|---|
RedisPubSubAsyncCommandsImpl(StatefulRedisPubSubConnection<K,V> connection,
RedisCodec<K,V> codec)
Initialize a new connection.
|
RedisPubSubReactiveCommandsImpl(StatefulRedisPubSubConnection<K,V> connection,
RedisCodec<K,V> codec)
Initialize a new connection.
|
| Modifier and Type | Method and Description |
|---|---|
StatefulRedisPubSubConnection<K,V> |
RedisPubSubAsyncCommands.getStatefulConnection() |
| Modifier and Type | Method and Description |
|---|---|
StatefulRedisPubSubConnection<K,V> |
RedisPubSubReactiveCommands.getStatefulConnection() |
| Modifier and Type | Method and Description |
|---|---|
StatefulRedisPubSubConnection<K,V> |
RedisPubSubCommands.getStatefulConnection() |
Copyright © 2016. All rights reserved.