(no title)
gopalv | 2 months ago
We can optimize the hash function to make it more space efficient.
Instead of using remainders to locate filter positions, we can use a mersenne prime number mask (like say 31), but in this case I have a feeling the best hash function to use would be to mask with (2^1)-1.
AlotOfReading|2 months ago
piersadrian|2 months ago