Add support for [b]zpopmin, [b]zpopmax (#4742)

This commit is contained in:
Gal Ben David
2020-11-03 18:27:37 +02:00
committed by GitHub
parent 27c16169f3
commit 92911e3874

View File

@@ -323,6 +323,10 @@ class Redis(object):
def zincrby(self, name, value, amount=...): ...
def zinterstore(self, dest, keys, aggregate=...): ...
def zlexcount(self, name, min, max): ...
def zpopmax(self, name, count=...): ...
def zpopmin(self, name, count=...): ...
def bzpopmax(self, keys, timeout=...): ...
def bzpopmin(self, keys, timeout=...): ...
def zrange(self, name, start, end, desc=..., withscores=..., score_cast_func=...): ...
def zrangebylex(self, name, min, max, start=..., num=...): ...
def zrangebyscore(self, name, min, max, start=..., num=..., withscores=..., score_cast_func=...): ...