You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, can I make a bloomfilter for any huge amount of data?
var
BloomFilter:TSynBloomFilter;
procedure Duplicates;
var
I:integer;
s:string;
begin
for i:=0 to maxint do begin
s:=inttostr(Random(999999)+99999));
if not StrDictionary.MayExist(s) then
StrDictionary.Insert(s);
end;
end;
begin
Randomize;
BloomFilter:=TSynBloomFilter.Create(10000000);
Duplicates;
end;
It just seems to me that I'm doing something wrong: Bloomfilter does a very good job with small data, but outright lies with huge data
The text was updated successfully, but these errors were encountered:
Hello, can I make a bloomfilter for any huge amount of data?
It just seems to me that I'm doing something wrong: Bloomfilter does a very good job with small data, but outright lies with huge data
The text was updated successfully, but these errors were encountered: