cmsketch
A count min sketch implementation in Rust.
Ported from Facebook/CacheLib.
Usage
use CMSketchU32;
const ERROR: f64 = 0.01;
const PROBABILITY: f64 = 0.95;
const MAX_WIDTH: usize = 0; // no limits
const MAX_DEPTH: usize = 0; // no limits
Roadmap
- more key type support
- benchmark