pdatastructs.rs icon indicating copy to clipboard operation
pdatastructs.rs copied to clipboard

Simple probabilistic data structures

Results 22 pdatastructs.rs issues
Sort by recently updated
recently updated
newest added

https://lemire.me/blog/2019/12/19/xor-filters-faster-and-smaller-than-bloom-filters/

struct-new

https://engineering.fb.com/2021/07/09/data-infrastructure/ribbon-filter/

struct-new

https://blog.acolyer.org/2019/09/06/ddsketch/

https://blog.acolyer.org/2018/10/31/moment-based-quantile-sketches-for-efficient-high-cardinality-aggregation-queries/

https://arxiv.org/abs/1603.05346v2 https://datasketches.apache.org/docs/Quantiles/KLLSketch.html https://datasketches.apache.org/docs/Quantiles/KllSketchVsTDigest.html

See https://github.com/dac-gmbh/golomb-set

struct-new

https://github.com/dhruvbird/q-digest

struct-new

The hyperloglog can get rather complex, especially when all features like bias correction, bit packing and register packing are implemented. For educational purposes, we should show the entire counter evolution...

struct-hyperloglog

Our data structures rely quite heavily on bit access and integer compression. `succient` seems to be rather bloated and also slow during copies. Not sure how `fixedbitset` performs. We should...

perf