Package | Description |
---|---|
org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
|
Modifier and Type | Method and Description |
---|---|
static RedisServerCommands.MigrateOption |
RedisServerCommands.MigrateOption.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisServerCommands.MigrateOption[] |
RedisServerCommands.MigrateOption.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
RedisServerCommands.migrate(byte[] key,
RedisNode target,
int dbIndex,
RedisServerCommands.MigrateOption option)
Atomically transfer a key from a source Redis instance to a destination Redis instance.
|
default void |
DefaultedRedisConnection.migrate(byte[] key,
RedisNode target,
int dbIndex,
RedisServerCommands.MigrateOption option)
Deprecated.
in favor of
RedisConnection.serverCommands() . |
void |
DefaultStringRedisConnection.migrate(byte[] key,
RedisNode target,
int dbIndex,
RedisServerCommands.MigrateOption option) |
void |
RedisServerCommands.migrate(byte[] key,
RedisNode target,
int dbIndex,
RedisServerCommands.MigrateOption option,
long timeout)
Atomically transfer a key from a source Redis instance to a destination Redis instance.
|
default void |
DefaultedRedisConnection.migrate(byte[] key,
RedisNode target,
int dbIndex,
RedisServerCommands.MigrateOption option,
long timeout)
Deprecated.
in favor of
RedisConnection.serverCommands() . |
void |
DefaultStringRedisConnection.migrate(byte[] key,
RedisNode target,
int dbIndex,
RedisServerCommands.MigrateOption option,
long timeout) |
Copyright © 2011–2019 Pivotal Software, Inc.. All rights reserved.