MCPcopy
hub / github.com/redis/redis-py / tdigest

Method tdigest

redis/commands/redismodules.py:88–94  ·  view source on GitHub ↗

Access the bloom namespace.

(self)

Source from the content-addressed store, hash-verified

86 return topk
87
88 def tdigest(self) -> TDigestBloom:
89 """Access the bloom namespace."""
90
91 from .bf import TDigestBloom
92
93 tdigest = TDigestBloom(client=self)
94 return tdigest
95
96 def vset(self) -> VectorSet:
97 """Access the VectorSet commands namespace."""

Callers 15

dt_tdigest.pyFile · 0.45
home_prob_dts.pyFile · 0.45
clientFunction · 0.45
test_tdigest_createFunction · 0.45
test_tdigest_resetFunction · 0.45
test_tdigest_mergeFunction · 0.45
test_tdigest_min_and_maxFunction · 0.45
test_tdigest_quantileFunction · 0.45
test_tdigest_cdfFunction · 0.45

Calls 1

TDigestBloomClass · 0.85

Tested by 15

clientFunction · 0.36
test_tdigest_createFunction · 0.36
test_tdigest_resetFunction · 0.36
test_tdigest_mergeFunction · 0.36
test_tdigest_min_and_maxFunction · 0.36
test_tdigest_quantileFunction · 0.36
test_tdigest_cdfFunction · 0.36
test_tdigest_rankFunction · 0.36
test_tdigest_revrankFunction · 0.36