Redis Flushall 命令
生活随笔
收集整理的這篇文章主要介紹了
Redis Flushall 命令
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Redis Flushall 命令用于清空整個 Redis 服務器的數據(刪除所有數據庫的所有 key )。
語法
redis Flushall 命令基本語法如下:
redis 127.0.0.1:6379> FLUSHALL可用版本
>= 1.0.0
返回值
總是返回 OK 。
實例
redis 127.0.0.1:6379> DBSIZE # 0 號數據庫的 key 數量 (integer) 9redis 127.0.0.1:6379> SELECT 1 # 切換到 1 號數據庫 OKredis 127.0.0.1:6379> DBSIZE # 1 號數據庫的 key 數量 (integer) 6redis 127.0.0.1:6379> flushall # 清空所有數據庫的所有 key OKredis 127.0.0.1:6379> DBSIZE # 不但 1 號數據庫被清空了 (integer) 0redis 127.0.0.1:6379> SELECT 0 # 0 號數據庫(以及其他所有數據庫)也一樣 OKredis 127.0.0.1:6379> DBSIZE (integer) 0總結
以上是生活随笔為你收集整理的Redis Flushall 命令的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: golang中defer语句使用小结
- 下一篇: C/C++端口复用SO_REUSEADD