Package | Description |
---|---|
com.lambdaworks.redis |
The redis client package containing
RedisClient for regular and sentinel operations. |
com.lambdaworks.redis.api.async |
Standalone Redis API for asynchronous executed commands.
|
com.lambdaworks.redis.api.rx |
Standalone Redis API for reactive commands.
|
com.lambdaworks.redis.api.sync |
Standalone Redis API for synchronous executed commands.
|
com.lambdaworks.redis.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
com.lambdaworks.redis.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
Modifier and Type | Method and Description |
---|---|
MigrateArgs<K> |
MigrateArgs.copy() |
static <K> MigrateArgs<K> |
MigrateArgs.Builder.copy() |
MigrateArgs<K> |
MigrateArgs.key(K key) |
static <K> MigrateArgs<K> |
MigrateArgs.Builder.key(K key) |
MigrateArgs<K> |
MigrateArgs.keys(Iterable<K> keys) |
static <K> MigrateArgs<K> |
MigrateArgs.Builder.keys(Iterable<K> keys) |
MigrateArgs<K> |
MigrateArgs.keys(K... keys) |
static <K> MigrateArgs<K> |
MigrateArgs.Builder.keys(K... keys) |
MigrateArgs<K> |
MigrateArgs.replace() |
static <K> MigrateArgs<K> |
MigrateArgs.Builder.replace() |
Modifier and Type | Method and Description |
---|---|
RedisFuture<String> |
AbstractRedisAsyncCommands.migrate(String host,
int port,
int db,
long timeout,
MigrateArgs<K> migrateArgs) |
Observable<String> |
AbstractRedisReactiveCommands.migrate(String host,
int port,
int db,
long timeout,
MigrateArgs<K> migrateArgs) |
RedisFuture<String> |
RedisKeysAsyncConnection.migrate(String host,
int port,
int db,
long timeout,
MigrateArgs<K> migrateArgs)
Deprecated.
Atomically transfer one or more keys from a Redis instance to another one.
|
String |
RedisKeysConnection.migrate(String host,
int port,
int db,
long timeout,
MigrateArgs<K> migrateArgs)
Deprecated.
Atomically transfer one or more keys from a Redis instance to another one.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
Observable<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.
|
Modifier and Type | Method and Description |
---|---|
String |
RedisKeyCommands.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.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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.
|
Copyright © 2018 lettuce.io. All rights reserved.