Redis Rpop 命令
Redis 教程
· 2019-03-07 15:12:50
Redis Rpop 命令用于移除列表的最后一个元素,返回值为移除的元素。
语法
redis Rpop 命令基本语法如下:
redis 127.0.0.1:6379> RPOP KEY_NAME
可用版本
>= 1.0.0
返回值
被移除的元素。
当列表不存在时,返回 nil 。
实例
redis> RPUSH mylist "one" (integer) 1 redis> RPUSH mylist "two" (integer) 2 redis> RPUSH mylist "three" (integer) 3 redis> RPOP mylist "three" redis> LRANGE mylist 0 -1 1) "one" 2) "two" redis>
点击查看所有 Redis 教程 文章: https://www.codercto.com/courses/l/33.html
Programming Amazon Web Services
James Murty / O'Reilly Media / 2008-3-25 / USD 49.99
Building on the success of its storefront and fulfillment services, Amazon now allows businesses to "rent" computing power, data storage and bandwidth on its vast network platform. This book demonstra......一起来看看 《Programming Amazon Web Services》 这本书的介绍吧!