summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/zrevrange.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-04 07:19:32 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-01-04 07:19:32 +0000
commit7480e618ec785ba8a1c74c8a150cffe5880fb3bb (patch)
tree87422376dd9a7eee55850f0fce9a8bb4c13e44a2 /iredis/data/commands/zrevrange.md
parentAdding upstream version 1.12.1. (diff)
downloadiredis-upstream/1.13.0.tar.xz
iredis-upstream/1.13.0.zip
Adding upstream version 1.13.0.upstream/1.13.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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