redis常用命令

2021-10-19 22:56:24 字數 842 閱讀 8121

安裝 進入redis解壓目錄:

yum install gcc-c++

make

make install

預設安裝目錄:

usr/local/bin

啟動redis-server redis-conf

連線redis-cli -p 6379

測試連線

ping

檢視redis程序是否開啟

ps -ef|grep redis

關閉redis服務

shutdown

exit

切換資料庫

select 3

檢視資料庫大小

dbsize

檢視資料庫所有的key

keys *

清空當前資料庫

flushdb

清空全部資料庫的內容

flushall

預設埠

6379

判斷key是否存在

exists key名:返回1存在,返回0不存在

移除key

move key名 1:返回1 移除成功

設定過期時間

expire key名 時間 ,如:expire age 5

檢視key的型別

type key名

string型別:

獲取key的value字串的長度:

strlen key名

自動加1

incr key名

自動減1

decr key名

設定步長指定增量

incrby key名 步長

設定步長指定減量

decrby key名 步長

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