diff options
Diffstat (limited to 'redis/client.py')
-rw-r--r-- | redis/client.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/redis/client.py b/redis/client.py index 41a9660..8f63343 100644 --- a/redis/client.py +++ b/redis/client.py @@ -935,6 +935,9 @@ class Redis(threading.local): "Return the number of elements in the sorted set ``name``" return self.execute_command('ZCARD', name) + def zcount(self, name, min, max): + return self.execute_command('ZCOUNT', name, min, max) + def zincr(self, key, member, value=1): "This has been deprecated, use zincrby instead" warnings.warn(DeprecationWarning( |