Uses of Class
io.lettuce.core.MigrateArgs
| 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 MigrateArgs in io.lettuce.core
Methods in io.lettuce.core that return MigrateArgs Modifier and Type Method Description MigrateArgs<K>MigrateArgs. auth(char[] password)Set AUTHpasswordoption.MigrateArgs<K>MigrateArgs. auth(CharSequence password)Set AUTHpasswordoption.static <K> MigrateArgs<K>MigrateArgs.Builder. auth(char[] password)Creates newMigrateArgswithAUTH(target authentication) enabled.static <K> MigrateArgs<K>MigrateArgs.Builder. auth(CharSequence password)Creates newMigrateArgswithAUTH(target authentication) enabled.MigrateArgs<K>MigrateArgs. auth2(CharSequence username, CharSequence password)Set AUTH2usernameandpasswordoption.static <K> MigrateArgs<K>MigrateArgs.Builder. auth2(CharSequence username, CharSequence password)Creates newMigrateArgswithAUTH2(target authentication) enabled.static <K> MigrateArgs<K>MigrateArgs.Builder. copy()Creates newMigrateArgsand enabling COPY.MigrateArgs<K>MigrateArgs. copy()Do not remove the key from the local instance by settingCOPY.static <K> MigrateArgs<K>MigrateArgs.Builder. key(K key)Creates newMigrateArgssetting akeyto migrate.MigrateArgs<K>MigrateArgs. key(K key)Migrate a singlekey.static <K> MigrateArgs<K>MigrateArgs.Builder. keys(Iterable<K> keys)Creates newMigrateArgssettingkeysto migrate.static <K> MigrateArgs<K>MigrateArgs.Builder. keys(K... keys)Creates newMigrateArgssettingkeysto migrate.MigrateArgs<K>MigrateArgs. keys(Iterable<K> keys)Migrate one or morekeys.MigrateArgs<K>MigrateArgs. keys(K... keys)Migrate one or morekeys.static <K> MigrateArgs<K>MigrateArgs.Builder. replace()Creates newMigrateArgsand enabling REPLACE.MigrateArgs<K>MigrateArgs. replace()Replace existing key on the remote instance by settingREPLACE.Methods in io.lettuce.core with parameters of type MigrateArgs Modifier and Type Method Description RedisFuture<String>AbstractRedisAsyncCommands. migrate(String host, int port, int db, long timeout, MigrateArgs<K> migrateArgs)Mono<String>AbstractRedisReactiveCommands. migrate(String host, int port, int db, long timeout, MigrateArgs<K> migrateArgs) -
Uses of MigrateArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type MigrateArgs Modifier and Type Method Description RedisFuture<String>RedisKeyAsyncCommands. migrate(String host, int port, int db, long timeout, MigrateArgs<K> migrateArgs)Atomically transfer one or more keys from a Redis instance to another one. -
Uses of MigrateArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type MigrateArgs Modifier and Type Method Description Mono<String>RedisKeyReactiveCommands. migrate(String host, int port, int db, long timeout, MigrateArgs<K> migrateArgs)Atomically transfer one or more keys from a Redis instance to another one. -
Uses of MigrateArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type MigrateArgs Modifier and Type Method Description StringRedisKeyCommands. migrate(String host, int port, int db, long timeout, MigrateArgs<K> migrateArgs)Atomically transfer one or more keys from a Redis instance to another one. -
Uses of MigrateArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type MigrateArgs Modifier and Type Method Description AsyncExecutions<String>NodeSelectionKeyAsyncCommands. migrate(String host, int port, int db, long timeout, MigrateArgs<K> migrateArgs)Atomically transfer one or more keys from a Redis instance to another one. -
Uses of MigrateArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type MigrateArgs Modifier and Type Method Description Executions<String>NodeSelectionKeyCommands. migrate(String host, int port, int db, long timeout, MigrateArgs<K> migrateArgs)Atomically transfer one or more keys from a Redis instance to another one.