Easy Tutorial
❮ Lists Rpush Lists Lpush ❯

Redis Rpoplpush Command

Redis Lists

The Redis Rpoplpush command is used to remove the last element of a list and add it to another list, returning the element.

Syntax

The basic syntax for the redis Rpoplpush command is as follows:

redis 127.0.0.1:6379> RPOPLPUSH SOURCE_KEY_NAME DESTINATION_KEY_NAME

Available Versions

= 1.0.0

Return Value

The popped element.

Example

redis 127.0.0.1:6379> RPUSH mylist "hello"
(integer) 1
redis 127.0.0.1:6379> RPUSH mylist "foo"
(integer) 2
redis 127.0.0.1:6379> RPUSH mylist "bar"
(integer) 3
redis 127.0.0.1:6379> RPOPLPUSH mylist myotherlist
"bar"
redis 127.0.0.1:6379> LRANGE mylist 0 -1
1) "hello"
2) "foo"

Redis Lists

❮ Lists Rpush Lists Lpush ❯