# File lib/redis.rb, line 854
  def lpush(key, value)
    synchronize do |client|
      client.call([:lpush, key, value])
    end
  end