清空当前 select
数据库中的所有 key。
此命令不会失败。
Delete all the keys of the currently selected DB. This command never fails.
时间复杂度是 O(N), N 代表当前数据库中 key 的总数。
*FLUSHDB ASYNC
(Redis 4.0.0 or greater)
详细参考FLUSHALL
*返回值
字符串:OK
*例子
# 清空前的 key 数量
redis> DBSIZE
(integer) 4
redis> FLUSHDB
OK
# 清空后的 key 数量
redis> DBSIZE
(integer) 0