# File lib/redis.rb, line 349
  def rpush(key, value)
    synchronize do
      @client.call [:rpush, key, value]
    end
  end