Redis常用命令

2021-07-25 22:35:39 字數 810 閱讀 6056

redis常用命令:

①keys * : 取出當前匹配的所有key

②exists key: 當前key是否存在

③del key:刪除當前key

④expire confirm 100 設定confirm這個key100秒過期

⑤ttl confirm 獲取confirm這個key的有效時長

⑥select 0 選擇到0資料庫 redis預設的資料庫是0-15共16個資料庫

⑦move confirm 1 將當前資料庫中的key移動到其他資料庫中 這裡就是將confirm這個key從當前資料庫移動到1中

⑧persist confirm 移除confirm這個key的過期時間

⑨randomkey 隨機返回資料庫裡面乙個的key

10.rename key2 key3重新命名key2 為key3

11.type key2 返回key的資料型別

ping pong返回響應是否連線成功。

echo 在命令列列印一些內容

select 0~15 編號的資料庫

quit/exit: 退出客戶端

dbsize: 返回當前資料庫所有key的數量

info:返回redis的相關資訊

config get dir/* 實時傳儲收到的請求

flushdb 刪除當前選擇資料中的所有key

flushall 刪除所有資料庫中的資料庫

config get requirepass獲取redis密碼

config set requirepass ""設定密碼

auth 密碼 登入時認證密碼

Redis常用命令

1 keys 返回滿足給定pattern的所有key。例如 keys 返回所有鍵 2 exists 確認乙個key是否存在。例如 exists age 3 del 刪除指定key。例如 del age 4 expire 設定乙個key的過期時間。例如 expire age 100 單位 秒 5 pe...

redis常用命令

redis cli p 6079 登陸redis,埠為6079 auth psssword 如果redis帶密碼,則執行上邊一行,password替換為你的密碼。src redis cli p 6380 keys wei xargs src redis cli p 6380 del 批量刪除埠為63...

Redis常用命令

啟動 redis 服務 src redis server或者src redis server redis.conf src redis server redis.conf 1 log.log 2 errlog.log 1為標準輸出,2為錯誤輸出 將 redis 作為 linux 服務隨機啟動 vi ...