RoaringBitmap / roaring-rs

A better compressed bitset in Rust
https://docs.rs/roaring/
Apache License 2.0
757 stars 84 forks source link

Direct intersections with serialized RoaringBitmaps #281

Closed Kerollmops closed 5 months ago

Kerollmops commented 5 months ago

This PR is related to #263 and implements methods to do intersections directly with serialized data. This avoids deserializing everything in memory to reduce it just after which drastically reduces the amount of allocated memory and intensive intersection operations.

To Do