RPOP
Removes and returns the last elements of the list stored at .
When called without the count
argument:
When called with the argument:
dragonfly> RPUSH mylist "one" "two" "three" "four" "five"
dragonfly> RPOP mylist
dragonfly> RPOP mylist 2
1) "four"
dragonfly> LRANGE mylist 0 -1
1) "one"