ZREVRANGE

Syntax

  1. ZREVRANGE key start stop [WITHSCORES]

Time complexity: O(log(N)+M) with N being the number of elements in the sorted set and M the number of elements returned.

Returns the specified range of elements in the sorted set stored at key. The elements are considered to be ordered from the highest to the lowest score. Descending lexicographical order is used for elements with equal score.

Apart from the reversed ordering, ZREVRANGE is similar to ZRANGE.

Return

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

Examples

  1. dragonfly> ZADD myzset 1 "one"
  2. (integer) 1
  3. dragonfly> ZADD myzset 2 "two"
  4. (integer) 1
  5. dragonfly> ZADD myzset 3 "three"
  6. (integer) 1
  7. dragonfly> ZREVRANGE myzset 0 -1
  8. 1) "three"
  9. 2) "two"
  10. 3) "one"
  11. dragonfly> ZREVRANGE myzset 2 3
  12. 1) "one"
  13. dragonfly> ZREVRANGE myzset -2 -1
  14. 1) "two"
  15. 2) "one"