You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
Add support for T-Digest (#2214)
* wip * close #2216 - add support for TDIGEST.MERGESTORE and make compression optional on TDIGEST.CREATE * fix some tdigest commands, use bloom edge docker * fix index.ts * 2.4-RC2 (v2.4.1) * fix some commands and tests * clean code
This commit is contained in:
@ -1,11 +1,13 @@
|
||||
import Bloom from './bloom';
|
||||
import CountMinSketch from './count-min-sketch';
|
||||
import Cuckoo from './cuckoo';
|
||||
import TopK from './top-k';
|
||||
import bf from './bloom';
|
||||
import cms from './count-min-sketch';
|
||||
import cf from './cuckoo';
|
||||
import tDigest from './t-digest';
|
||||
import topK from './top-k';
|
||||
|
||||
export default {
|
||||
bf: Bloom,
|
||||
cms: CountMinSketch,
|
||||
cf: Cuckoo,
|
||||
topK: TopK
|
||||
bf,
|
||||
cms,
|
||||
cf,
|
||||
tDigest,
|
||||
topK
|
||||
};
|
||||
|
Reference in New Issue
Block a user