-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Given RedisBloom/RedisBloom#285 there is the following set of commands we should enable:
TDIGEST.CREATE: Allocate a new histogramTDIGEST.RESET: Empty out a histogram and re-initialize itTDIGEST.ADD: Add a value to the t-Digest with the specified countTDIGEST.MERGE: Merge one t-Digest into anotherTDIGEST.CDF: Returns the fraction of all points added which are ≤ x.TDIGEST.QUANTILE: Returns an estimate of the cutoff such that a specified fraction of the data added to the t-Digest would be less than or equal to the cutoff.TDIGEST.MIN: Get the minimum value from the histogram. Will return DBL_MAX if the histogram is emptyTDIGEST.MAX: Get the maximum value from the histogram. Will return DBL_MIN if the histogram is emptyTDIGEST.INFO: Returns compression, capacity, total merged and unmerged nodes, the total compressions
made up to date on that key, and merged and unmerged weight.
With the in-depth params in https://oss.redislabs.com/redisbloom/master/TDigest_Commands/
Metadata
Metadata
Assignees
Labels
No labels