RPOP

Syntax
RPOP key [count]
Available since:
1.0.0
Time complexity:
O(N) where N is the number of elements returned
ACL categories:
@write, @list, @fast,

Removes and returns the last elements of the list stored at key.

By default, the command pops a single element from the end of the list. When provided with the optional count argument, the reply will consist of up to count elements, depending on the list's length.

Examples

Give these commands a try in the interactive console:

redis> RPUSH mylist "one" "two" "three" "four" "five"
"id=423520 addr=127.0.0.1:36722 laddr=127.0.0.1:6379 fd=12 name= age=277928 idle=0 flags=N db=0 sub=0 psub=0 ssub=0 multi=-1 watch=0 qbuf=26 qbuf-free=20448 argv-mem=10 multi-mem=0 rbs=1024 rbp=0 obl=0 oll=0 omem=0 tot-mem=22426 events=r cmd=client|info user=interwebz redir=-1 resp=2 lib-name= lib-ver=
"
redis> RPUSH mylist "one" "two" "three" "four" "five"
Cannot destructure property 'error' of 'replies[i]' as it is undefined.
redis> RPOP mylist
Cannot destructure property 'error' of 'replies[i]' as it is undefined.
redis> RPOP mylist 2
Cannot destructure property 'error' of 'replies[i]' as it is undefined.
redis> LRANGE mylist 0 -1
Cannot destructure property 'error' of 'replies[i]' as it is undefined.
redis>

RESP2 Reply

One of the following:

  • Nil reply: if the key does not exist.
  • Bulk string reply: when called without the count argument, the value of the last element.
  • Array reply: when called with the count argument, a list of popped elements.

RESP3 Reply

One of the following:

  • Null reply: if the key does not exist.
  • Bulk string reply: when called without the count argument, the value of the last element.
  • Array reply: when called with the count argument, a list of popped elements.

History

  • Starting with Redis version 6.2.0: Added the count argument.
RATE THIS PAGE
Back to top ↑