Problem We have some BloomFilters (like a java.util.set without deletion) and we store them in ehcache (you can think it’s […]
Tag: bloom-filter
Hashing an arbitrary object to a sparse array of bits
Problem I have this method in one of the java classes I’m working on (an implementation of a counting bloom […]
Counting Bloom Filter
Problem I’m working on writing a Java class library which includes the following implementation of a counting bloom filter: package […]
Bloom filter implementation
Problem This is an implementation of Bloom filter with add and contain functionality. I’m looking for code review, best practices, […]