一、安裝
二、連線
在bin目錄下./redis-cli -p port -a password
授權auth password
檢視是否連線成功 ping pong表示連線成功
三、鍵值相關命令
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的資料型別
四、伺服器相關命令
ping pong返回響應是否連線成功
echo 在命令列列印一些內容
select 0~15 編號的資料庫
quit /exit 退出客戶端
dbsize 返回當前資料庫中所有key的數量
info 返回redis的相關資訊
config get dir/* 實時傳儲收到的請求
flushdb 刪除當前選擇資料庫中的所有key
flushall 刪除所有資料庫中的資料庫
------------2016-6-29 11:12:26--
source:官網
入門教程
redis redis cli 操作指令
預設選擇 db庫是 0 redis cli p 6379 檢視當前所在 db庫 所有的快取key redis 127.0.0.1 6379 keys 選擇 db庫 redis 127.0.0.1 6379 select 8 清除所有的快取key redis 127.0.0.1 6379 flusha...
Redis Redis cli使用的簡單記錄
redis是以快速讀寫資料為優勢的工具,key value結構,伺服器端經常會用他來做資料的快取,作為輔助儲存方式,定時寫入mysql中 用於不同程序間讀取資料也很方便,但是有時候取到的資料不太對,所以需要檢視此時redis裡儲存的到底是什麼來定位問題。此時就用到了redis cli。1.連線red...
easyui常用控制項常用方法
easyui常用控制項使用方法 1.文字框 取值 id textbox getvalue 或 id val 2.鏈結按鈕 register 3.日曆控制項 顯示年月日 取值 kssj datebox getvalue 顯示年月日時分秒 取值 regtime datetimebox getvalue ...