summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/zremrangebyscore.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/zremrangebyscore.md')
-rw-r--r--iredis/data/commands/zremrangebyscore.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/iredis/data/commands/zremrangebyscore.md b/iredis/data/commands/zremrangebyscore.md
new file mode 100644
index 0000000..3665bd0
--- /dev/null
+++ b/iredis/data/commands/zremrangebyscore.md
@@ -0,0 +1,19 @@
+Removes all elements in the sorted set stored at `key` with a score between
+`min` and `max` (inclusive).
+
+Since version 2.1.6, `min` and `max` can be exclusive, following the syntax of
+`ZRANGEBYSCORE`.
+
+@return
+
+@integer-reply: the number of elements removed.
+
+@examples
+
+```cli
+ZADD myzset 1 "one"
+ZADD myzset 2 "two"
+ZADD myzset 3 "three"
+ZREMRANGEBYSCORE myzset -inf (2
+ZRANGE myzset 0 -1 WITHSCORES
+```