| 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 |
|---|---|
CopyArgs |
CopyArgs.destinationDb(long destinationDb)
Specify an alternative logical database index for the destination key.
|
static CopyArgs |
CopyArgs.Builder.destinationDb(long destinationDb)
Creates new
CopyArgs and sets DB. |
CopyArgs |
CopyArgs.replace(boolean replace)
Hint redis to remove the destination key before copying the value to it.
|
static CopyArgs |
CopyArgs.Builder.replace(boolean replace)
Creates new
CopyArgs and sets REPLACE. |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Boolean> |
AbstractRedisAsyncCommands.copy(K source,
K destination,
CopyArgs copyArgs) |
Mono<Boolean> |
AbstractRedisReactiveCommands.copy(K source,
K destination,
CopyArgs copyArgs) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Boolean> |
RedisKeyAsyncCommands.copy(K source,
K destination,
CopyArgs copyArgs)
Copy the value stored at the source key to the destination key.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<Boolean> |
RedisKeyReactiveCommands.copy(K source,
K destination,
CopyArgs copyArgs)
Copy the value stored at the source key to the destination key.
|
| Modifier and Type | Method and Description |
|---|---|
Boolean |
RedisKeyCommands.copy(K source,
K destination,
CopyArgs copyArgs)
Copy the value stored at the source key to the destination key.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<Boolean> |
NodeSelectionKeyAsyncCommands.copy(K source,
K destination,
CopyArgs copyArgs)
Copy the value stored at the source key to the destination key.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<Boolean> |
NodeSelectionKeyCommands.copy(K source,
K destination,
CopyArgs copyArgs)
Copy the value stored at the source key to the destination key.
|
Copyright © 2021 lettuce.io. All rights reserved.