4 releases

Uses old Rust 2015

0.1.3 Aug 23, 2019
0.1.2 Feb 27, 2019
0.1.1 Feb 12, 2017
0.1.0 Feb 11, 2017

#1026 in Data structures

Download history 132/week @ 2023-12-15 61/week @ 2023-12-22 19/week @ 2023-12-29 46/week @ 2024-01-05 71/week @ 2024-01-12 121/week @ 2024-01-19 100/week @ 2024-01-26 114/week @ 2024-02-02 173/week @ 2024-02-09 175/week @ 2024-02-16 146/week @ 2024-02-23 156/week @ 2024-03-01 235/week @ 2024-03-08 121/week @ 2024-03-15 165/week @ 2024-03-22 188/week @ 2024-03-29

737 downloads per month
Used in 3 crates (2 directly)

MIT license

9KB
125 lines

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.


lib.rs:

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.

No runtime deps