RPUSH
语法
RPUSH key element [element ...]
- 从以下位置开始可用:
- 1.0.0
- 时间复杂度:
- O(1) 表示每个添加的元素,因此 O(N) 在使用多个参数调用命令时添加 N 个元素。
- ACL 类别:
-
@write
,@list
,@fast
,
将所有指定的值插入到存储在key
.
如果key
不存在,则会在执行推送之前将其创建为空列表
操作。
什么时候key
保存的值不是列表,则返回错误。
只需使用单个命令调用即可推送多个元素
在命令末尾指定多个参数。
元素将一个接一个地插入到列表的尾部,从
leftmost 元素更改为 rightmost 元素。
因此,例如命令RPUSH mylist a b c
将生成一个列表
含a
作为第一个元素,b
作为第二个元素,将c
作为第三个元素。
例子
Give these commands a try in the interactive console:
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.