class Redis

def rpoplpush(source, destination)

Remove the last element in a list, append it to another list and return it.
def rpoplpush(source, destination)
  synchronize do
    @client.call(:rpoplpush, source, destination)
  end
end