summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/zrevrangebylex.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2020-03-21 10:28:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-02-07 11:16:53 +0000
commit06cba6ccd165ca8b224797e37fccb9e63f026d77 (patch)
treee82f1bc439997ae296f2e74f8a64d84c5d95f140 /iredis/data/commands/zrevrangebylex.md
parentInitial commit. (diff)
downloadiredis-06cba6ccd165ca8b224797e37fccb9e63f026d77.tar.xz
iredis-06cba6ccd165ca8b224797e37fccb9e63f026d77.zip
Adding upstream version 1.9.1.upstream/1.9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'iredis/data/commands/zrevrangebylex.md')
-rw-r--r--iredis/data/commands/zrevrangebylex.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/iredis/data/commands/zrevrangebylex.md b/iredis/data/commands/zrevrangebylex.md
new file mode 100644
index 0000000..831e5cd
--- /dev/null
+++ b/iredis/data/commands/zrevrangebylex.md
@@ -0,0 +1,18 @@
+When all the elements in a sorted set are inserted with the same score, in order
+to force lexicographical ordering, this command returns all the elements in the
+sorted set at `key` with a value between `max` and `min`.
+
+Apart from the reversed ordering, `ZREVRANGEBYLEX` is similar to `ZRANGEBYLEX`.
+
+@return
+
+@array-reply: list of elements in the specified score range.
+
+@examples
+
+```cli
+ZADD myzset 0 a 0 b 0 c 0 d 0 e 0 f 0 g
+ZREVRANGEBYLEX myzset [c -
+ZREVRANGEBYLEX myzset (c -
+ZREVRANGEBYLEX myzset (g [aaa
+```