efficient / cuckoofilter

Other
969 stars 168 forks source link

Problem in Adding __int128 #37

Open liuhycn opened 5 years ago

liuhycn commented 5 years ago

I am creating the filter like this : CuckooFilter<__int128, 15> filter(total_items); Every "fingerprint" is 15 bits. But when I insert items to this filter, it can only contain 2 items.

That must be something wrong, I need help! Thanks.

jbapple commented 4 years ago

Generally, 15 bits does not work for a CuckooFilter. See #35.