rust-lang-nursery/rustc-hash

Name: rustc-hash

Owner: rust-lang-nursery

Description: Custom hash algorithm used by rustc (plus hashmap/set aliases): fast, deterministic, not secure

Created: 2018-05-24 12:26:21.0

Updated: 2018-05-24 14:19:28.0

Pushed: 2018-05-24 13:06:01.0

Homepage: null

Size: 11

Language: Rust

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

rustc-hash

A speedy hash algorithm used within rustc. The hashmap in liballoc by default uses SipHash which isn't quite as speedy as we want. In the compiler we're not really worried about DOS attempts, so we use a fast non-cryptographic hash.

This is the same as the algorithm used by Firefox – which is a homespun one not based on any widely-known algorithm – though modified to produce 64-bit hash values instead of 32-bit hash values. It consistently out-performs an FNV-based hash within rustc itself – the collision rate is similar or slightly worse than FNV, but the speed of the hash function itself is much higher because it works on up to 8 bytes at a time.

Usage
rustc_hash::FxHashMap;
map: FxHashMap<u32, u32> = FxHashMap::default();

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.