From e3e571e7567f7abbaddc51098b7a1f65866fc04d Mon Sep 17 00:00:00 2001 From: Bill Mill Date: Wed, 8 Aug 2012 13:09:56 -0400 Subject: [PATCH] adding a link to @vmg's magesterial pull request --- index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.html b/index.html index da2163d..93314e6 100644 --- a/index.html +++ b/index.html @@ -280,6 +280,8 @@

Hash Functions

Examples of fast, simple hashes that are independent enough3 include murmur, the fnv series of hashes, and HashMix. +

To see the difference that a faster-than-cryptographic hash function can make, check out this story of a ~800% speedup when switching a bloom filter implementation from md5 to murmur. +

In a short survey of bloom filter implementations: