Redis之列表類型

應用場景 好友列表,粉絲列表,消息隊列,最新消息排行等。   list操作命令【有序,可重複,雙端隊列】 1.lpush: 往list最左邊添加元素 2.rpush:往list最右邊添加元素 3.lpop:推出最左邊的元素 4.rpop:推出最右邊元素 5.llen:查看list長度 6.linsert key before value newValue: 在list指定的值前插入newValue
相關文章
相關標籤/搜索