LPOP
Removes and returns the first 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> LPOP mylist
dragonfly> LPOP mylist 2
1) "two"
dragonfly> LRANGE mylist 0 -1
1) "four"