Redis中keys的通用操作(代碼)

來源:互聯網
上載者:User
本篇文章給大家帶來的內容是關於Redis中keys的通用操作(代碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

進入目錄:cd /usr/local/redis/

啟動服務:./bin/redis-server ./redis.conf

進入:./bin/redis-cli

(1)查看key: keys *

查看所有的keys:127.0.0.1:6379> keys *

127.0.0.1:6379> keys * 1) "myb1" 2) "mya1" 3) "mya2" 4) "my3" 5) "myhash" 6) "mylist2" 7) "num2" 8) "my1" 9) "num"10) "mylist3"11) "mya3"12) "name"13) "myb3"14) "mylist"15) "my2"16) "num3"17) "imooc"18) "num5"19) "mylist4"20) "myb2"21) "myset"22) "mysort"

(2)查看以任一字元創開頭的key:keys 字串?

查詢my開頭的key: keys my?

127.0.0.1:6379> keys my?1) "my3"2) "my1"3) "my2"

(3)刪除key:del

刪除key:del my1 my2 my3

127.0.0.1:6379> del my1 my2 my3(integer) 3

(4)查看key是否存在exists

查看是否存在,1代表存在,0代表不存在: exists my1

127.0.0.1:6379> exists my1(integer) 0127.0.0.1:6379> exists num3(integer) 1

(5)對key重新命名:rename

對key重新命名操作:rename 原來key名稱 新的key名稱

127.0.0.1:6379> get num"36"127.0.0.1:6379> rename num newnumOK127.0.0.1:6379> get newnum"36"

(6)設定到期時間:expire

設定到期時間:expire key名稱 秒數

127.0.0.1:6379> expire newnum 1000(integer) 1

(7)查看key的剩餘時間:ttl

查看key的剩餘時間:ttl key名稱,如果沒有設定的話,則返回負值。

127.0.0.1:6379> expire newnum 1000(integer) 1127.0.0.1:6379> ttl newnum(integer) 885

(8)判斷key的類型:type

判斷key的類型:type key的名稱。

127.0.0.1:6379> type newnumstring127.0.0.1:6379> type my1none127.0.0.1:6379> type myhashhash127.0.0.1:6379> type mylist4list127.0.0.1:6379> type mysortzset
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.