# File lib/redis.rb, line 587
  def zrevrange(key, start, stop, options = {})
    command = CommandOptions.new(options) do |c|
      c.bool :withscores
      c.bool :with_scores
    end

    synchronize do
      @client.call [:zrevrange, key, start, stop, *command.to_a]
    end
  end