Redis常用命令

來源:互聯網
上載者:User

標籤:http   ar   sp   strong   on   資料   log   bs   代碼   

啟動 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 /etc/rc.local, 加入代碼:

/root/install/redis-2.4.9/src/redis-server

用戶端串連
src/redis-cli

停止redis服務:
src/redis-cli shutdown

增刪改查:

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常用命令

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.