redis 常用命令

2021-08-31 03:26:43 字數 855 閱讀 7637

redis 的常用命令主要分為兩個方面、乙個是鍵值相關命令、乙個是伺服器相關命令

1、鍵值相關命令

keys * 取出當前所有的 key

exists name 檢視 n 是否有 name 這個 key

del name 刪除 key name

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

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

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

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

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

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

rename key2 key3 重新命名 key2 為 key3

type key2 返回 key 的資料型別

2、伺服器相關命令

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

echo 在命令列列印一些內容

select 0~15 編號的資料庫

quit /exit 退出客戶端

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

info 返回 redis 的相關資訊

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

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

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

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 ...