| 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 |
|---|---|
LMovemArgs |
LMovemArgs.count(long count,
LMovemArgs.Ordering ordering)
Move up-to
count elements. |
LMovemArgs |
LMovemArgs.exactly(long count,
LMovemArgs.Ordering ordering)
Move exactly
count elements or return an empty list if the source list does not have enough elements. |
static LMovemArgs |
LMovemArgs.Builder.leftLeft()
|
static LMovemArgs |
LMovemArgs.Builder.leftRight()
|
static LMovemArgs |
LMovemArgs.Builder.rightLeft()
|
static LMovemArgs |
LMovemArgs.Builder.rightRight()
|
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<V>> |
AbstractRedisAsyncCommands.lmovem(K source,
K destination,
LMovemArgs args) |
reactor.core.publisher.Flux<V> |
AbstractRedisReactiveCommands.lmovem(K source,
K destination,
LMovemArgs args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<V>> |
RedisListAsyncCommands.lmovem(K source,
K destination,
LMovemArgs args)
Atomically returns and removes one or more elements from the head/tail of the list stored at
source, and pushes
them to the head/tail of the list stored at destination. |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<V> |
RedisListReactiveCommands.lmovem(K source,
K destination,
LMovemArgs args)
Atomically returns and removes one or more elements from the head/tail of the list stored at
source, and pushes
them to the head/tail of the list stored at destination. |
| Modifier and Type | Method and Description |
|---|---|
List<V> |
RedisListCommands.lmovem(K source,
K destination,
LMovemArgs args)
Atomically returns and removes one or more elements from the head/tail of the list stored at
source, and pushes
them to the head/tail of the list stored at destination. |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<List<V>> |
NodeSelectionListAsyncCommands.lmovem(K source,
K destination,
LMovemArgs args)
Atomically returns and removes one or more elements from the head/tail of the list stored at
source, and pushes
them to the head/tail of the list stored at destination. |
| Modifier and Type | Method and Description |
|---|---|
Executions<List<V>> |
NodeSelectionListCommands.lmovem(K source,
K destination,
LMovemArgs args)
Atomically returns and removes one or more elements from the head/tail of the list stored at
source, and pushes
them to the head/tail of the list stored at destination. |
Copyright © 2026 lettuce.io. All rights reserved.