apache / datasketches-java

A software library of stochastic streaming algorithms, a.k.a. sketches.
https://datasketches.apache.org
Apache License 2.0
875 stars 207 forks source link

Direct implementation of Bloom filter #538

Closed jmalkin closed 3 months ago

jmalkin commented 3 months ago

Adds read-only and writable direct implementations of the Bloom filter.

Especially if reading very large filters just to query them, the ability to wrap the filter cuts the required memory footprint in half.