You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to change the hasher for key generation? For example in my case it makes sense to use https://crates.rs/crates/nohash-hasher as keys are already hash values.
The text was updated successfully, but these errors were encountered:
externcrate evmap;externcrate nohash_hasher;use nohash_hasher::BuildNoHashHasher;/// whatever your key type istypeK = i32;/// whatever your value type istypeV = i32;fnmain(){let(r,mut w) = evmap::Options::default().with_hasher(BuildNoHashHasher::<K>::default()).construct::<K,V>();// ...}
Is it possible to change the hasher for key generation? For example in my case it makes sense to use https://crates.rs/crates/nohash-hasher as keys are already hash values.
The text was updated successfully, but these errors were encountered: