Uses of Class
io.lettuce.core.CopyArgs
| 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.
|
-
Uses of CopyArgs in io.lettuce.core
Methods in io.lettuce.core that return CopyArgs Modifier and Type Method Description static CopyArgsCopyArgs.Builder. destinationDb(long destinationDb)Creates newCopyArgsand sets DB.CopyArgsCopyArgs. destinationDb(long destinationDb)Specify an alternative logical database index for the destination key.static CopyArgsCopyArgs.Builder. replace(boolean replace)Creates newCopyArgsand sets REPLACE.CopyArgsCopyArgs. replace(boolean replace)Hint redis to remove the destination key before copying the value to it. -
Uses of CopyArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type CopyArgs Modifier and Type Method Description RedisFuture<Boolean>RedisKeyAsyncCommands. copy(K source, K destination, CopyArgs copyArgs)Copy the value stored at the source key to the destination key. -
Uses of CopyArgs in io.lettuce.core.api.reactive
-
Uses of CopyArgs in io.lettuce.core.api.sync
-
Uses of CopyArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type CopyArgs Modifier and Type Method Description AsyncExecutions<Boolean>NodeSelectionKeyAsyncCommands. copy(K source, K destination, CopyArgs copyArgs)Copy the value stored at the source key to the destination key. -
Uses of CopyArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type CopyArgs Modifier and Type Method Description Executions<Boolean>NodeSelectionKeyCommands. copy(K source, K destination, CopyArgs copyArgs)Copy the value stored at the source key to the destination key.