12 releases

0.6.0 Jul 26, 2023
0.5.9 Jan 13, 2021
0.5.8 Nov 24, 2020
0.5.5 Jul 13, 2020
0.2.0 Jan 6, 2018

#179 in Algorithms

Download history 118/week @ 2023-12-11 105/week @ 2023-12-18 60/week @ 2023-12-25 132/week @ 2024-01-01 224/week @ 2024-01-08 152/week @ 2024-01-15 138/week @ 2024-01-22 225/week @ 2024-01-29 149/week @ 2024-02-05 304/week @ 2024-02-12 260/week @ 2024-02-19 353/week @ 2024-02-26 390/week @ 2024-03-04 291/week @ 2024-03-11 288/week @ 2024-03-18 449/week @ 2024-03-25

1,446 downloads per month
Used in 8 crates (2 directly)

MIT license

76KB
2K SLoC

Fast and Scalable Minimal Perfect Hash Functions in Rust

A Rust impl of Fast and scalable minimal perfect hashing for massive key sets.

The library generates a minimal perfect hash functions (MPHF) for a collection of hashable objects. This algorithm generates MPHFs that consume ~3-6 bits/item. The memory consumption during construction is a small multiple (< 2x) of the size of the dataset and final size of the MPHF. Note, minimal perfect hash functions only return a usable hash value for objects in the set used to create the MPHF. Hashing a new object will return an arbitrary hash value. If your use case may result in hashing new values, you will need an auxiliary scheme to detect this condition.

See Docs

Example usage:

use boomphf::*;

// sample set of obejcts
let possible_objects = vec![1, 10, 1000, 23, 457, 856, 845, 124, 912];
let n = possible_objects.len();

// generate a minimal perfect hash function of these items
let phf = Mphf::new(1.7, possible_objects.clone(), None);

// Get hash value of all objects
let mut hashes = Vec::new();
for v in possible_objects {
    hashes.push(phf.hash(&v));
}
hashes.sort();

// Expected hash output is set of all integers from 0..n
let expected_hashes: Vec<u64> = (0 .. n as u64).collect();
assert!(hashes == expected_hashes)

Note: this crate carries it's own bit-vector implementation to support rank-select queries and multi-threaded read-write access.

Dependencies

~98–610KB
~12K SLoC