ZREVRANGEBYSCORE key max min [WITHSCORES] [LIMIT offset count]

    Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements being returned. If M is constant (e.g. always asking for the first 10 elements with LIMIT), you can consider it O(log(N)).

    Returns all the elements in the sorted set at with a score between and (including elements with score equal to or ). In contrary to the default ordering of sorted sets, for this command the elements are considered to be ordered from high to low scores.

    The elements having the same score are returned in reverse lexicographical order.

    : list of elements in the specified score range (optionally with their scores).

    *Examples

    redis> ZADD myzset 1 "one"

    redis> ZADD myzset 2 "two"

    1. (integer) 1

    redis> ZREVRANGEBYSCORE myzset +inf -inf

    1. 2) "two"

    redis> ZREVRANGEBYSCORE myzset 2 1

    redis> ZREVRANGEBYSCORE myzset 2 (1

    1. 1) "two"
    redis>