alecmocatta / streaming_algorithms

Performant implementations of various streaming algorithms, including Count–min sketch, Top k, HyperLogLog, Reservoir sampling.
Apache License 2.0
83 stars 11 forks source link

Is this abandoned? #14

Open rbtcollins opened 2 years ago

rbtcollins commented 2 years ago

There are dependency updates like the rand one from dependabot not merged. It looks like a useful crate but I'm trying to assess whether I'd need to fork it or whether it is still maintained.

jianshu93 commented 1 year ago

Hello all,

I also find it very useful but not maintained. pack_simd was not updated and there is one called pack_simd2. We can also use nightly rust to use SIMD. The hyperloglog and count min sketch is really useful for big data. This is the fastest hyperloglog and count min sketch in Rust I have ever ran into.

Jianshu