summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/zrevrange.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/zrevrange.md')
-rw-r--r--iredis/data/commands/zrevrange.md11
1 files changed, 4 insertions, 7 deletions
diff --git a/iredis/data/commands/zrevrange.md b/iredis/data/commands/zrevrange.md
index a7a667c..3a19810 100644
--- a/iredis/data/commands/zrevrange.md
+++ b/iredis/data/commands/zrevrange.md
@@ -1,16 +1,13 @@
-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.
+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`.
-As per Redis 6.2.0, this command is considered deprecated. Please prefer using
-the `ZRANGE` command with the `REV` argument in new code.
-
@return
-@array-reply: list of elements in the specified range (optionally with their
-scores).
+@array-reply: list of elements in the specified range (optionally with
+their scores).
@examples