Redis 與 list 相關的常用命令

list 類似一個雙端隊列,即可以從左邊 push 和 pop,也可以從右邊 push 和 pop,底層其實是一個單鏈表。   一、添加 1. lpush list01 1 2 3 4 5 key 爲 list01,value 爲 1,2,3,4,5,從左向右push: 2.  rpush list01 a b 從右往左向 list01 中 push a b:  3.  lrange list01
相關文章
相關標籤/搜索