summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/bzpopmin.md
diff options
context:
space:
mode:
Diffstat (limited to 'iredis/data/commands/bzpopmin.md')
-rw-r--r--iredis/data/commands/bzpopmin.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/iredis/data/commands/bzpopmin.md b/iredis/data/commands/bzpopmin.md
index 118a821..5541726 100644
--- a/iredis/data/commands/bzpopmin.md
+++ b/iredis/data/commands/bzpopmin.md
@@ -5,7 +5,7 @@ members to pop from any of the given sorted sets. A member with the lowest score
is popped from first sorted set that is non-empty, with the given keys being
checked in the order that they are given.
-The `timeout` argument is interpreted as an integer value specifying the maximum
+The `timeout` argument is interpreted as an double value specifying the maximum
number of seconds to block. A timeout of zero can be used to block indefinitely.
See the [BLPOP documentation][cl] for the exact semantics, since `BZPOPMIN` is
@@ -23,6 +23,10 @@ popped from.
where a member was popped, the second element is the popped member itself, and
the third element is the score of the popped element.
+@history
+
+- `>= 6.0`: `timeout` is interpreted as a double instead of an integer.
+
@examples
```