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 |
Client for Redis Cluster, see
RedisClusterClient . |
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.
|
Modifier and Type | Method and Description |
---|---|
static FlushMode |
FlushMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlushMode[] |
FlushMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
RedisFuture<String> |
AbstractRedisAsyncCommands.flushall(FlushMode flushMode) |
Mono<String> |
AbstractRedisReactiveCommands.flushall(FlushMode flushMode) |
RedisFuture<String> |
AbstractRedisAsyncCommands.flushdb(FlushMode flushMode) |
Mono<String> |
AbstractRedisReactiveCommands.flushdb(FlushMode flushMode) |
RedisFuture<String> |
AbstractRedisAsyncCommands.scriptFlush(FlushMode flushMode) |
Mono<String> |
AbstractRedisReactiveCommands.scriptFlush(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
RedisFuture<String> |
RedisServerAsyncCommands.flushall(FlushMode flushMode)
Remove all keys from all databases using the specified
FlushMode . |
RedisFuture<String> |
RedisServerAsyncCommands.flushdb(FlushMode flushMode)
Remove all keys from the current database using the specified
FlushMode . |
RedisFuture<String> |
RedisScriptingAsyncCommands.scriptFlush(FlushMode flushMode)
Remove all the scripts from the script cache using the specified
FlushMode . |
Modifier and Type | Method and Description |
---|---|
Mono<String> |
RedisServerReactiveCommands.flushall(FlushMode flushMode)
Remove all keys from all databases using the specified
FlushMode . |
Mono<String> |
RedisServerReactiveCommands.flushdb(FlushMode flushMode)
Remove all keys from the current database using the specified
FlushMode . |
Mono<String> |
RedisScriptingReactiveCommands.scriptFlush(FlushMode flushMode)
Remove all the scripts from the script cache using the specified
FlushMode . |
Modifier and Type | Method and Description |
---|---|
String |
RedisServerCommands.flushall(FlushMode flushMode)
Remove all keys from all databases using the specified
FlushMode . |
String |
RedisServerCommands.flushdb(FlushMode flushMode)
Remove all keys from the current database using the specified
FlushMode . |
String |
RedisScriptingCommands.scriptFlush(FlushMode flushMode)
Remove all the scripts from the script cache using the specified
FlushMode . |
Modifier and Type | Method and Description |
---|---|
RedisFuture<String> |
RedisAdvancedClusterAsyncCommandsImpl.flushall(FlushMode flushMode) |
Mono<String> |
RedisAdvancedClusterReactiveCommandsImpl.flushall(FlushMode flushMode) |
RedisFuture<String> |
RedisAdvancedClusterAsyncCommandsImpl.flushdb(FlushMode flushMode) |
Mono<String> |
RedisAdvancedClusterReactiveCommandsImpl.flushdb(FlushMode flushMode) |
Modifier and Type | Method and Description |
---|---|
AsyncExecutions<String> |
NodeSelectionServerAsyncCommands.flushall(FlushMode flushMode)
Remove all keys from all databases using the specified
FlushMode . |
AsyncExecutions<String> |
NodeSelectionServerAsyncCommands.flushdb(FlushMode flushMode)
Remove all keys from the current database using the specified
FlushMode . |
AsyncExecutions<String> |
NodeSelectionScriptingAsyncCommands.scriptFlush(FlushMode flushMode)
Remove all the scripts from the script cache using the specified
FlushMode . |
Modifier and Type | Method and Description |
---|---|
Executions<String> |
NodeSelectionServerCommands.flushall(FlushMode flushMode)
Remove all keys from all databases using the specified
FlushMode . |
Executions<String> |
NodeSelectionServerCommands.flushdb(FlushMode flushMode)
Remove all keys from the current database using the specified
FlushMode . |
Executions<String> |
NodeSelectionScriptingCommands.scriptFlush(FlushMode flushMode)
Remove all the scripts from the script cache using the specified
FlushMode . |
Copyright © 2023 lettuce.io. All rights reserved.