redis在linux系統下客戶端命令

2021-08-09 18:21:53 字數 801 閱讀 9260

keys *

取出當前匹配的所有key

> exists larry

(integer) 0

當前的key是否存在

del lv

刪除當前key

expire

設定過期時間

> expire larry 10

(integer) 1

> move larry ad4

(integer) 1

移動larry鍵值對到ad4資料庫

> persist lv

(integer) 1

移除當前key的過期時間

randomkey

隨機返回乙個key

rename

重新命名key

type

返回值的資料型別

type testlist

list

> ping

pong

測試連線是否還在

>echo name

"larry"

列印》 select ad4databank

ok資料庫切換

> quit

退出連線

> dbsize

(integer) 12

當前資料庫中key的數量

> info

伺服器基本資訊

monitor

實時轉儲收到的請求

config get

獲取伺服器的引數配置

flushdb

清空當前資料庫

flushall

清除所有數

redis在linux下搭建

3.切換到redis目錄下 輸入命令make進行自動解壓 4.然後再切換到redis目錄下的src目錄下 cp redis server usr local redis cp redis benchmark usr local redis cp redis cli usr local redis 5...

Redis在Linux下安裝

1.安裝redis之前首先要有tcl和gcc yum install y tcl gcc2.將redis.tar.gz壓縮包 usr local src目錄下,開始解壓編譯安裝redis cd usr local src 進入redis.tar.gz目錄下 tar zxvf redis 2.8.24...

在linux下安裝redis

進入到解壓後的資料夾 進行編譯 make 把編譯完成的檔案加到啟動目錄裡面 make install 進入redis.conf配置檔案中按自己的需求進行修改 啟動redis伺服器 redis server redis.conf redis使用時設定密碼 vi redis.conf 修改此配置 req...