summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/zrevrangebyscore.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/zrevrangebyscore.md')
-rw-r--r--iredis/data/commands/zrevrangebyscore.md13
1 files changed, 5 insertions, 8 deletions
diff --git a/iredis/data/commands/zrevrangebyscore.md b/iredis/data/commands/zrevrangebyscore.md
index d41652c..e95d771 100644
--- a/iredis/data/commands/zrevrangebyscore.md
+++ b/iredis/data/commands/zrevrangebyscore.md
@@ -1,7 +1,7 @@
Returns all the elements in the sorted set at `key` with a score between `max`
-and `min` (including elements with score equal to `max` or `min`). In contrary
-to the default ordering of sorted sets, for this command the elements are
-considered to be ordered from high to low scores.
+and `min` (including elements with score equal to `max` or `min`).
+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.
@@ -9,13 +9,10 @@ order.
Apart from the reversed ordering, `ZREVRANGEBYSCORE` is similar to
`ZRANGEBYSCORE`.
-As per Redis 6.2.0, this command is considered deprecated. Please prefer using
-the `ZRANGE` command with the `BYSCORE` and `REV` arguments in new code.
-
@return
-@array-reply: list of elements in the specified score range (optionally with
-their scores).
+@array-reply: list of elements in the specified score range (optionally
+with their scores).
@examples