Trait redis_driver::ServerCommands
source · [−]pub trait ServerCommands: CommandSend {
fn flushdb(
&self,
flushing_mode: FlushingMode
) -> Pin<Box<dyn Future<Output = Result<()>> + '_>> { ... }
fn flushall(
&self,
flushing_mode: FlushingMode
) -> Pin<Box<dyn Future<Output = Result<()>> + '_>> { ... }
}
Expand description
Provided Methods
Delete all the keys of all the existing databases, not just the currently selected one.