list数据类型的基本操作 添加/修改数据 lpush key value1 [value2] ... rpush key value1 [value2] ... 获取数据 lrange key start stop lrange key 0 -1 可以查询链表中所有元素 lindex key index 获取链表长度 llen key 获取并一处数据 lpop key rpop key 规定时间内获取并移除数据 blpop key1 [key2] timeout brpop key1 [key2] timeout 移除指定数据 lrem key count value