Bloom Filter NuGet Package

A Bloom Filter is a probabalistic data structure that Implements the Add() and Contains() methods in a memory efficient manner when compared to the more traditional Hash Set.

However, the Bloom Filter has some draw backs:

* It will sometimes indicate that an element is in the set when it isn't. The False Positive rate can be decreased by using more memory.

*The capacity of the Bloom Filter is fixed at creation time.

(You can add more elements than the target capacity, but the False Positive rate continues to increase thereafter).




Got any Bloom Filter Question?





Info

Version: 1.0.1
Author(s): Graham Henry
Last Update: Wednesday, December 30, 2015
.NET Fiddle: Create the first Fiddle
NuGet Url: https://www.nuget.org/packages/BloomFilter


Install
Install-Package BloomFilter
dotnet add package BloomFilter
paket add BloomFilter
BloomFilter Download (Unzip the "nupkg" after downloading)



Tags



STATS

must-have-score

avg-downloads-per-day

1

days-since-last-release

3011