Redis rpush 命令用于将所有指定的值插入到存储在 key 的列表的尾部。
- 如果key不存在,则在执行推送操作之前将其创建为空列表。
- 如果key存储的不是列表则返回错误。
语法:
rpush key_name value1..valuen
可用版本
>=1.0.0.
返回值
操作后的列表长度。
返回值类型
整数
示例:redis rpush
127.0.0.1:6379> rpush mycolor1 white black
(integer) 2
127.0.0.1:6379> rpush mycolor1 red blue
(integer) 4
127.0.0.1:6379> lrange mycolor1 0 -1
1) "white"
2) "black"
3) "red"
4) "blue"