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