亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

lists數據類型有哪些

發布時間:2021-08-05 15:25:37 來源:億速云 閱讀:155 作者:Leah 欄目:數據庫

這篇文章將為大家詳細講解有關lists數據類型有哪些,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

  lists數據類型有哪些

  Redis的list類型其實就是一個每個子元素都是string類型的雙向鏈表。鏈表的最大長度是(2的32次方)。我們可以通過push,pop操作從鏈表的頭部或者尾部添加刪除元素。這使得list既可以用作棧,也可以用作隊列。

  有意思的是list的pop操作還有阻塞版本的,當我們[lr]pop一個list對象時,如果list是空,或者不存在,會立即返回nil。但是阻塞版本的b[lr]pop可以則可以阻塞,當然可以加超時時間,超時后也會返回nil。為什么要阻塞版本的pop呢,主要是為了避免輪詢。舉個簡單的例子如果我們用list來實現一個工作隊列。執行任務的thread可以調用阻塞版本的pop去獲取任務這樣就可以避免輪詢去檢查是否有任務存在。當任務來時候工作線程可以立即返回,也可以避免輪詢帶來的延遲。

  lists數據怎么操作

  1、lpush

  在key對應list的頭部添加字符串元素:

  redis 127.0.0.1:6379> lpush mylist "world"

  (integer) 1

  redis 127.0.0.1:6379> lpush mylist "hello"

  (integer) 2

  redis 127.0.0.1:6379> lrange mylist 0 -1

  1) "hello"

  2) "world"

  redis 127.0.0.1:6379>

  在此處我們先插入了一個world,然后在world的頭部插入了一個hello。其中lrange是用于取mylist的內容。

  2、rpush

  在key對應list的尾部添加字符串元素:

  redis 127.0.0.1:6379> rpush mylist2 "hello"

  (integer) 1

  redis 127.0.0.1:6379> rpush mylist2 "world"

  (integer) 2

  redis 127.0.0.1:6379> lrange mylist2 0 -1

  1) "hello"

  2) "world"

  redis 127.0.0.1:6379>

  在此處我們先插入了一個hello,然后在hello的尾部插入了一個world。

  3、linsert

  在key對應list的特定位置之前或之后添加字符串元素:

  redis 127.0.0.1:6379> rpush mylist3 "hello"

  (integer) 1

  redis 127.0.0.1:6379> rpush mylist3 "world"

  (integer) 2

  redis 127.0.0.1:6379> linsert mylist3 before "world" "there"

  (integer) 3

  redis 127.0.0.1:6379> lrange mylist3 0 -1

  1) "hello"

  2) "there"

  3) "world"

  redis 127.0.0.1:6379>

  在此處我們先插入了一個hello,然后在hello的尾部插入了一個world,然后又在world的前面插入了there。

  4、lset

  設置list中指定下標的元素值(下標從0開始):

  redis 127.0.0.1:6379> rpush mylist4 "one"

  (integer) 1

  redis 127.0.0.1:6379> rpush mylist4 "two"

  (integer) 2

  redis 127.0.0.1:6379> rpush mylist4 "three"

  (integer) 3

  redis 127.0.0.1:6379> lset mylist4 0 "four"

  OK

  redis 127.0.0.1:6379> lset mylist4 -2 "five"

  OK

  redis 127.0.0.1:6379> lrange mylist4 0 -1

  1) "four"

  2) "five"

  3) "three"

  redis 127.0.0.1:6379>

  在此處我們依次插入了one,two,three,然后將標是0的值設置為four,再將下標是-2的值設置為five。

  5、lrem

  從key對應list中刪除count個和value相同的元素。

  count>0時,按從頭到尾的順序刪除,具體如下:

  redis 127.0.0.1:6379> rpush mylist5 "hello"

  (integer) 1

  redis 127.0.0.1:6379> rpush mylist5 "hello"

  (integer) 2

  redis 127.0.0.1:6379> rpush mylist5 "foo"

  (integer) 3

  redis 127.0.0.1:6379> rpush mylist5 "hello"

  (integer) 4

  redis 127.0.0.1:6379> lrem mylist5 2 "hello"

  (integer) 2

  redis 127.0.0.1:6379> lrange mylist5 0 -1

  1) "foo"

  2) "hello"

  redis 127.0.0.1:6379>

  count<0時,按從尾到頭的順序刪除,具體如下: redis="" 127.0.0.1:6379="">rpush mylist6 "hello"

  (integer) 1

  redis 127.0.0.1:6379> rpush mylist6 "hello"

  (integer) 2

  redis 127.0.0.1:6379> rpush mylist6 "foo"

  (integer) 3

  redis 127.0.0.1:6379> rpush mylist6 "hello"

  (integer) 4

  redis 127.0.0.1:6379> lrem mylist6 -2 "hello"

  (integer) 2

  redis 127.0.0.1:6379> lrange mylist6 0 -1

  1) "hello"

  2) "foo"

  redis 127.0.0.1:6379>

  count=0時,刪除全部,具體如下:

  redis 127.0.0.1:6379> rpush mylist7 "hello"

  (integer) 1

  redis 127.0.0.1:6379> rpush mylist7 "hello"

  (integer) 2

  redis 127.0.0.1:6379> rpush mylist7 "foo"

  (integer) 3

  redis 127.0.0.1:6379> rpush mylist7 "hello"

  (integer) 4

  redis 127.0.0.1:6379> lrem mylist7 0 "hello"

  (integer) 3

  redis 127.0.0.1:6379> lrange mylist7 0 -1

  1) "foo"

  redis 127.0.0.1:6379>

  6、ltrim

  保留指定key 的值范圍內的數據:

  redis 127.0.0.1:6379> rpush mylist8 "one"

  (integer) 1

  redis 127.0.0.1:6379> rpush mylist8 "two"

  (integer) 2

  redis 127.0.0.1:6379> rpush mylist8 "three"

  (integer) 3

  redis 127.0.0.1:6379> rpush mylist8 "four"

  (integer) 4

  redis 127.0.0.1:6379> ltrim mylist8 1 -1

  OK

  redis 127.0.0.1:6379> lrange mylist8 0 -1

  1) "two"

  2) "three"

  3) "four"

  redis 127.0.0.1:6379>

關于lists數據類型有哪些就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

红桥区| 莱州市| 罗定市| 卢湾区| 上蔡县| 东平县| 临汾市| 基隆市| 四川省| 蒙城县| 赤城县| 南郑县| 泰宁县| 扎囊县| 乾安县| 泸西县| 和龙市| 苍溪县| 平乡县| 密山市| 泰州市| 双牌县| 巫溪县| 荔波县| 泸定县| 景谷| 玛纳斯县| 开化县| 瑞金市| 杭州市| 西平县| 安平县| 宜兰县| 陇南市| 安阳县| 仪征市| 镇原县| 新丰县| 孟连| 福建省| 乌兰察布市|