JohnWu

Results 13 comments of JohnWu

Thank you for your feedback. I will solve this problem as soon as possible

Can you provide code snippets?

```cs var bf = FilterRedisBuilder.Build("localhost", "bftest", 100000, 0.01); var items = new List(); var count = 50; var rndNum = new Random(Guid.NewGuid().GetHashCode()); for (int i = 0; i < count;...

Single or multiple, it needs to be clear that the return value indicates whether it already exists. secne 1 ```cs if(bf.Contains("value")){ return; } //logic bf.Add("value"); ``` secne 2 ```cs if(!bf.Add("value")){...

Thanks for your interest in this project. If you're interested, you can read this PDF [Kirsch & Mitzenmacher (2006)](https://www.eecs.harvard.edu/~michaelm/postscripts/tr-02-05.pdf)

> 目前可以通过adcode查询出详细信息,可不可以直接在归属地信息(MobilePhone)中显示详细信息 有考虑过拆分,但拆分后压缩率会增大

Allocated memory does not mean actual usage,bloom use BitArray as storage, it actually takes up less memory than Dict. ```csharp [MemoryDiagnoser] public class Issues9 { public int DataSize = 3_000_000;...

Write a console program, and do not close the program after the test is successful. Then, check how much memory the process currently occupies.

> Is there any other way of measuring total size of the dict and bf? The size has been allocated during initialization

> Could a feature be included to allow filters to be saved to a file or loaded from file? Thanks Thank you for your issues. BloomFilter aims to reduce the...