Uses of Class
io.lettuce.core.FlushMode
| 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 FlushMode in io.lettuce.core
Methods in io.lettuce.core that return FlushMode Modifier and Type Method Description static FlushModeFlushMode. 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.Methods in io.lettuce.core with parameters of type FlushMode Modifier and Type Method 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) -
Uses of FlushMode in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type FlushMode Modifier and Type Method Description RedisFuture<String>RedisServerAsyncCommands. flushall(FlushMode flushMode)Remove all keys from all databases using the specifiedFlushMode.RedisFuture<String>RedisServerAsyncCommands. flushdb(FlushMode flushMode)Remove all keys from the current database using the specifiedFlushMode.RedisFuture<String>RedisScriptingAsyncCommands. scriptFlush(FlushMode flushMode)Remove all the scripts from the script cache using the specifiedFlushMode. -
Uses of FlushMode in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type FlushMode Modifier and Type Method Description Mono<String>RedisServerReactiveCommands. flushall(FlushMode flushMode)Remove all keys from all databases using the specifiedFlushMode.Mono<String>RedisServerReactiveCommands. flushdb(FlushMode flushMode)Remove all keys from the current database using the specifiedFlushMode.Mono<String>RedisScriptingReactiveCommands. scriptFlush(FlushMode flushMode)Remove all the scripts from the script cache using the specifiedFlushMode. -
Uses of FlushMode in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type FlushMode Modifier and Type Method Description StringRedisServerCommands. flushall(FlushMode flushMode)Remove all keys from all databases using the specifiedFlushMode.StringRedisServerCommands. flushdb(FlushMode flushMode)Remove all keys from the current database using the specifiedFlushMode.StringRedisScriptingCommands. scriptFlush(FlushMode flushMode)Remove all the scripts from the script cache using the specifiedFlushMode. -
Uses of FlushMode in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type FlushMode Modifier and Type Method Description AsyncExecutions<String>NodeSelectionServerAsyncCommands. flushall(FlushMode flushMode)Remove all keys from all databases using the specifiedFlushMode.AsyncExecutions<String>NodeSelectionServerAsyncCommands. flushdb(FlushMode flushMode)Remove all keys from the current database using the specifiedFlushMode.AsyncExecutions<String>NodeSelectionScriptingAsyncCommands. scriptFlush(FlushMode flushMode)Remove all the scripts from the script cache using the specifiedFlushMode. -
Uses of FlushMode in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type FlushMode Modifier and Type Method Description Executions<String>NodeSelectionServerCommands. flushall(FlushMode flushMode)Remove all keys from all databases using the specifiedFlushMode.Executions<String>NodeSelectionServerCommands. flushdb(FlushMode flushMode)Remove all keys from the current database using the specifiedFlushMode.Executions<String>NodeSelectionScriptingCommands. scriptFlush(FlushMode flushMode)Remove all the scripts from the script cache using the specifiedFlushMode.