LPUSH

语法
LPUSH key element [element ...]
从以下位置开始可用:
1.0.0
时间复杂度:
O(1) 表示每个添加的元素,因此 O(N) 在使用多个参数调用命令时添加 N 个元素。
ACL 类别:
@write, @list, @fast,

将所有指定的值插入到存储在key. 如果key不存在,则会在执行推送之前将其创建为空列表 操作。 什么时候key保存的值不是列表,则返回错误。

只需使用单个命令调用即可推送多个元素 在命令末尾指定多个参数。 元素将一个接一个地插入到列表的头部,从 leftmost 元素更改为 rightmost 元素。 因此,例如命令LPUSH mylist a b c将生成一个列表 含c作为第一个元素,b作为第二个元素,将a作为第三个元素。

例子

Give these commands a try in the interactive console:

LPUSH mylist "world" LPUSH mylist "hello" LRANGE mylist 0 -1

RESP2/RESP3 Reply

Integer reply: the length of the list after the push operation.

History

  • Starting with Redis version 2.4.0: Accepts multiple element arguments.
RATE THIS PAGE
Back to top ↑