hyperlog-simd
A Rust implementation of HyperLogLog and HyperLogLogPlusPlus streaming distinct count algorithms with SIMD (Single Instruction, Multiple Data) support on both ARM and x86_64 platforms. Also features serde compatibility for easy serialization and deserialization.
Add hyperlog-simd
to your Cargo.toml
dependencies:
toml
[dependencies]
hyperlog-simd = "0.1.0"
Here's a simple example to get started:
```rust use hyperlog_simd::{HyperLogLog, HyperLogLogPlusPlus};
let mut hll = HyperLogLog::new(); hll.add("hello"); hll.add("world");
let count = hll.estimate(); println!("Estimated distinct count: {}", count);
let mut hllpp = HyperLogLogPlusPlus::new(); hllpp.add("hello"); hllpp.add("world");
let countpp = hllpp.estimate(); println!("Estimated distinct estimate (HLL++): {}", countpp); ```
For detailed examples and documentation, please refer to the documentation.
This library provides impressive performance gains on platforms that support SIMD. Benchmarks will be updated periodically, and you can also run them yourself using:
bash
cargo bench
We welcome contributions! Please see CONTRIBUTING.md for guidelines and details.
hyperlog-simd
is licensed under the MIT License. See LICENSE for details.
Happy coding! We hope hyperlog-simd
helps in your streaming distinct count needs with maximum efficiency! 🚀🦀