cbloom 0.1.3

Concurrent implementation of Bloom filters.
Documentation
  • Coverage
  • 100%
    7 out of 7 items documented0 out of 6 items with examples
  • Size
  • Source code size: 9.52 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.39 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jackpot51 ticki lucab Tommoa

A concurrent implementation of Bloom filters.

Bloom filters is a simple data structure, which is used in many different situations. It can neatly solve certain problems heaurustically without need for extreme memory usage.

This implementation is fairly standard, except that it uses atomic integers to work concurrently.