class Redis

def zrevrange(key, start, stop, options = {})

Other tags:
    See: #zrange -

Other tags:
    Example: Retrieve all members and their scores from a sorted set -
    Example: Retrieve all members from a sorted set -
def zrevrange(key, start, stop, options = {})
  args = []
  with_scores = options[:with_scores] || options[:withscores]
  if with_scores
    args << "WITHSCORES"
    block = FloatifyPairs
  end
  synchronize do |client|
    client.call([:zrevrange, key, start, stop] + args, &block)
  end
end