# File lib/redis.rb, line 600
  def zrevrangebyscore(key, max, min, options = {})
    command = CommandOptions.new(options) do |c|
      c.splat :limit
      c.bool  :withscores
      c.bool  :with_scores
    end

    synchronize do
      @client.call [:zrevrangebyscore, key, max, min, *command.to_a]
    end
  end