Lists Rpoplpush
# Redis Rpoplpush Command
[!(#) Redis Lists](#)
The Redis Rpoplpush command removes the last element from a list, pushes it to another list, and returns it.
### Syntax
The basic syntax of the Redis Rpoplpush command is as follows:
redis 127.0.0.1:6379> RPOPLPUSH SOURCE_KEY_NAME DESTINATION_KEY_NAME
### Available Since
>= 1.0.0
### Return Value
The element that was popped and pushed.
### 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 -11) "hello"2) "foo"
[!(#) Redis Lists](#)
YouTip