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://codercto.com/courses/l/33.html
RESTful Web Services Cookbook
Subbu Allamaraju / Yahoo Press / 2010-3-11 / USD 39.99
While the REST design philosophy has captured the imagination of web and enterprise developers alike, using this approach to develop real web services is no picnic. This cookbook includes more than 10......一起来看看 《RESTful Web Services Cookbook》 这本书的介绍吧!