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)
Dependencies
Tags
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).