Redis Flushdb 命令用于清空當(dāng)前數(shù)據(jù)庫中的所有 key。
redis Flushdb 命令基本語法如下:
redis 127.0.0.1:6379> FLUSHDB
>= 1.0.0
總是返回 OK 。
redis 127.0.0.1:6379> DBSIZE # 清空前的 key 數(shù)量 (integer) 4 redis 127.0.0.1:6379> FLUSHDB OK redis 127.0.0.1:6379> DBSIZE # 清空后的 key 數(shù)量 (integer) 0