diff options
author | dvora-h <67596500+dvora-h@users.noreply.github.com> | 2022-08-02 15:56:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 15:56:49 +0300 |
commit | 9901c7963ff5c5f68ff7e651142c51c2d715c5eb (patch) | |
tree | 999f2006c1d37e1c74d82b27ab2929dc083b3a2f /redis/commands/bf/commands.py | |
parent | 4ed8aba8441ae841e2c8e698b84ebda1da8208f9 (diff) | |
download | redis-py-9901c7963ff5c5f68ff7e651142c51c2d715c5eb.tar.gz |
Add support for `TDIGEST.QUANTILE` extensions (#2317)
* Add support for TDIGEST.QUANTILE extensions
* linters
* linters & utils
* Update test_bloom.py
Diffstat (limited to 'redis/commands/bf/commands.py')
-rw-r--r-- | redis/commands/bf/commands.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/redis/commands/bf/commands.py b/redis/commands/bf/commands.py index baf0130..7d36b93 100644 --- a/redis/commands/bf/commands.py +++ b/redis/commands/bf/commands.py @@ -393,13 +393,14 @@ class TDigestCommands: """ # noqa return self.execute_command(TDIGEST_MAX, key) - def quantile(self, key, quantile): + def quantile(self, key, quantile, *quantiles): """ - Return double value estimate of the cutoff such that a specified fraction of the data - added to this TDigest would be less than or equal to the cutoff. + Returns estimates of one or more cutoffs such that a specified fraction of the + observations added to this t-digest would be less than or equal to each of the + specified cutoffs. (Multiple quantiles can be returned with one call) For more information see `TDIGEST.QUANTILE <https://redis.io/commands/tdigest.quantile>`_. """ # noqa - return self.execute_command(TDIGEST_QUANTILE, key, quantile) + return self.execute_command(TDIGEST_QUANTILE, key, quantile, *quantiles) def cdf(self, key, value): """ |