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