https://github.com/Cyan4973/xxHash - maybe check this hash?
https://docs.rs/twox-hash/latest/twox_hash/
instead of K hash function can use composite hash function which will create K different hashes using so called 2 hash trick: “`python def get_hashes(key, k, m): h1 = hash1(key) h2 = hash2(key) for i in range(k): yield (h1 + i * h2) % m “`