bloom
bloom copied to clipboard
Go package implementing Bloom filters, used by Milvus and Beego.
If bloom filter has items beyond uint32 range then ApproximatedSize returns wrong bloom filter size, typecasting it to uint64 so that it can derive correct result. This PR fixes #103
This is happing because we are type casting bloom filter size estimation to uint32 and its rounding numbers back to within uint32 range, we should prefer to typecast it to...
Hello! I would like to know if it's possible to make this library compatible with Guava (the Java library by Google). When I try to load a Bloom Filter using...
It seems that Go's behavior when casting Positive Infinity to uint32 is architecture specific. This causes the`ApproximatedSize` calculation to return an inconsistent value between architectures. If you run this: ```...