Based on the implementation for Redis (antirez/redis src/hyperloglog.c)
More info and different implementations available at: https://sites.google.com/site/murmurhash/
cargo build --release
```rust use murmurhash64::murmur_hash64a;
fn main() { let key = "Pizza & Mandolino"; let seed = 2915580697;
let hash = murmur_hash64a(key.as_bytes(), seed);
}
```
As a Hasher
```rust use std::collections::HashMap; use murmurhash64::{MurmurHasher,RandomMurmurState}; use std::default::Default;
fn main() { let mut hashmap : HashMap<_, _, RandomMurmurState> = Default::default(); hashmap.insert("abc", 123); hashmap.insert("def", 456); asserteq!(Some(&123), hashmap.get("abc")); asserteq!(Some(&456), hashmap.get("def")); } ```
Run tests with:
cargo test
If you find bugs or want to help otherwise, please open an issue.
BSD. See LICENSE.