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入門 redis常用命令
redis cli h 10.3.98.54 c p 7000 登入連線redis keys 取出當前所有的key exists name 檢視n是否有name這個key del name 刪除key name expire confirm 100 設定confirm這個key100秒過期 ttl ...
redis入門 redis常用命令
redis入門 redis常用命令 redis的常用命令主要分為兩個方面 乙個是鍵值相關命令 乙個是伺服器相關命令 1 鍵值相關命令 www.2cto.com keys 取出當前所有的key exists name 檢視n是否有name這個key del name 刪除key name expire...
redis入門 redis常用命令
redis的常用命令主要分為兩個方面 乙個是鍵值相關命令 乙個是伺服器相關命令 1 鍵值相關命令 keys 取出當前所有的key exists name 檢視n是否有name這個key del name 刪除key name expire confirm 100 設定confirm這個key100秒...