| Package | Description |
|---|---|
| org.springframework.data.redis.connection |
Connection package providing low-level abstractions for interacting with the various Redis 'drivers'/libraries.
|
| org.springframework.data.redis.core |
Core package for integrating Redis with Spring concepts.
|
| Modifier and Type | Method and Description |
|---|---|
static RedisServerCommands.FlushOption |
RedisServerCommands.FlushOption.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedisServerCommands.FlushOption[] |
RedisServerCommands.FlushOption.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
default void |
DefaultedRedisClusterConnection.flushAll(RedisClusterNode node,
RedisServerCommands.FlushOption option)
Deprecated.
in favor of
RedisConnection.serverCommands(). |
reactor.core.publisher.Mono<String> |
ReactiveClusterServerCommands.flushAll(RedisClusterNode node,
RedisServerCommands.FlushOption option)
Delete all all keys from all databases using the specified
RedisServerCommands.FlushOption. |
void |
RedisClusterServerCommands.flushAll(RedisClusterNode node,
RedisServerCommands.FlushOption option) |
void |
DefaultStringRedisConnection.flushAll(RedisServerCommands.FlushOption option) |
default void |
DefaultedRedisConnection.flushAll(RedisServerCommands.FlushOption option)
Deprecated.
in favor of
RedisConnection.serverCommands(). |
void |
RedisServerCommands.flushAll(RedisServerCommands.FlushOption option)
Delete all all keys from all databases using the specified
RedisServerCommands.FlushOption. |
reactor.core.publisher.Mono<String> |
ReactiveServerCommands.flushAll(RedisServerCommands.FlushOption option)
Delete all all keys from all databases using the specified
RedisServerCommands.FlushOption. |
default void |
DefaultedRedisClusterConnection.flushDb(RedisClusterNode node,
RedisServerCommands.FlushOption option)
Deprecated.
in favor of
RedisConnection.serverCommands(). |
reactor.core.publisher.Mono<String> |
ReactiveClusterServerCommands.flushDb(RedisClusterNode node,
RedisServerCommands.FlushOption option)
Delete all keys of the currently selected database using the specified
RedisServerCommands.FlushOption. |
void |
RedisClusterServerCommands.flushDb(RedisClusterNode node,
RedisServerCommands.FlushOption option) |
void |
DefaultStringRedisConnection.flushDb(RedisServerCommands.FlushOption option) |
default void |
DefaultedRedisConnection.flushDb(RedisServerCommands.FlushOption option)
Deprecated.
in favor of
RedisConnection.serverCommands(). |
void |
RedisServerCommands.flushDb(RedisServerCommands.FlushOption option)
Delete all keys of the currently selected database using the specified
RedisServerCommands.FlushOption. |
reactor.core.publisher.Mono<String> |
ReactiveServerCommands.flushDb(RedisServerCommands.FlushOption option)
Delete all keys of the currently selected database using the specified
RedisServerCommands.FlushOption. |
| Modifier and Type | Method and Description |
|---|---|
void |
ClusterOperations.flushDb(RedisClusterNode node,
RedisServerCommands.FlushOption option)
Flush db on node using the specified
RedisServerCommands.FlushOption. |
Copyright © 2011–2022 Pivotal Software, Inc.. All rights reserved.