jvirkki / libbloom

A simple and small bloom filter implementation in plain C.
BSD 2-Clause "Simplified" License
289 stars 113 forks source link

Feature Request: upgrade to Murmurhash3 #9

Closed wongsyrone closed 7 years ago

wongsyrone commented 7 years ago

According to the original author,

which is the latest version in the series of MurmurHash functions - the new version is faster, more robust, and its variants can produce 32- and 128-bit hash values efficiently on both x86 and x64 platforms.

The source file can be found at https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp

wongsyrone commented 7 years ago

Already done this by myself

albertobsd commented 3 years ago

@wongsyrone can you share a link to your work with this modifications that you made?