$redis->lPush('x', 'abc'); $redis->lPush('x', 'def'); $redis->lPush('y', '123'); $redis->lPush('y', '456'); // move the last of x to the front of y. var_dump($redis->rpoplpush('x', 'y'));& V( E/ V2 Y9 h) q! H
var_dump($redis->lRange('x', 0, -1)); / v6 ?8 w* S: u o D7 i
var_dump($redis->lRange('y', 0, -1)); * \1 i! R/ {/ L% z