Reputation: 13405
As far as I understand Bloom filter allows to tell if the element does not exist in the set with 100% guarantee. But it might tell with 1% chance that element exist while in fact it doesn't.
But can it be used for complex object and keys - not just single password, id or name? For example assuming I have millions of object with distinctive characteristics (id, name, some other fields) - can I use bloom filter to check object non-existence with all those characteristics at the same time?
Upvotes: 0
Views: 266
Reputation: 50127
Sure, you can. You have multiple choices:
Of course, having multiple Bloom filters uses more memory.
Upvotes: 1