| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
| Modifier and Type | Method and Description |
|---|---|
LMPopArgs |
LMPopArgs.count(long count)
Set the
count of entries to return. |
static LMPopArgs |
LMPopArgs.Builder.left()
Creates new
LMPopArgs setting with LEFT direction. |
static LMPopArgs |
LMPopArgs.Builder.right()
Creates new
LMPopArgs setting with RIGHT direction. |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<KeyValue<K,List<V>>> |
AbstractRedisAsyncCommands.blmpop(double timeout,
LMPopArgs args,
K... keys) |
Mono<KeyValue<K,List<V>>> |
AbstractRedisReactiveCommands.blmpop(double timeout,
LMPopArgs args,
K... keys) |
RedisFuture<KeyValue<K,List<V>>> |
AbstractRedisAsyncCommands.blmpop(long timeout,
LMPopArgs args,
K... keys) |
Mono<KeyValue<K,List<V>>> |
AbstractRedisReactiveCommands.blmpop(long timeout,
LMPopArgs args,
K... keys) |
RedisFuture<KeyValue<K,List<V>>> |
AbstractRedisAsyncCommands.lmpop(LMPopArgs args,
K... keys) |
Mono<KeyValue<K,List<V>>> |
AbstractRedisReactiveCommands.lmpop(LMPopArgs args,
K... keys) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<KeyValue<K,List<V>>> |
RedisListAsyncCommands.blmpop(double timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
RedisFuture<KeyValue<K,List<V>>> |
RedisListAsyncCommands.blmpop(long timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
RedisFuture<KeyValue<K,List<V>>> |
RedisListAsyncCommands.lmpop(LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<KeyValue<K,List<V>>> |
RedisListReactiveCommands.blmpop(double timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
Mono<KeyValue<K,List<V>>> |
RedisListReactiveCommands.blmpop(long timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
Mono<KeyValue<K,List<V>>> |
RedisListReactiveCommands.lmpop(LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list.
|
| Modifier and Type | Method and Description |
|---|---|
KeyValue<K,List<V>> |
RedisListCommands.blmpop(double timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
KeyValue<K,List<V>> |
RedisListCommands.blmpop(long timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
KeyValue<K,List<V>> |
RedisListCommands.lmpop(LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<KeyValue<K,List<V>>> |
NodeSelectionListAsyncCommands.blmpop(double timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
AsyncExecutions<KeyValue<K,List<V>>> |
NodeSelectionListAsyncCommands.blmpop(long timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
AsyncExecutions<KeyValue<K,List<V>>> |
NodeSelectionListAsyncCommands.lmpop(LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<KeyValue<K,List<V>>> |
NodeSelectionListCommands.blmpop(double timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
Executions<KeyValue<K,List<V>>> |
NodeSelectionListCommands.blmpop(long timeout,
LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list, or block until one is available.
|
Executions<KeyValue<K,List<V>>> |
NodeSelectionListCommands.lmpop(LMPopArgs args,
K... keys)
Remove and get the first/last elements in a list.
|
Copyright © 2023 lettuce.io. All rights reserved.