©
This document uses PHP Chinese website manual Release
RPOP key
自1.0.0起可用。
Time complexity: O(1)
删除并返回存储在列表中的最后一个元素key
。
散装串答复:最后一个元素的值,返回nil
当key
不存在。
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"