#hash #cache #hashing #performance #wrapper #hash-values

cachedhash

Wrapper for values that caches their hash

3 unstable releases

0.2.0 Feb 14, 2024
0.1.2 Oct 8, 2022
0.1.1 Oct 4, 2022
0.1.0 Oct 4, 2022

#49 in Caching

Download history 48/week @ 2024-01-09 201/week @ 2024-01-16 247/week @ 2024-01-23 1196/week @ 2024-01-30 1544/week @ 2024-02-06 3335/week @ 2024-02-13 2529/week @ 2024-02-20 2981/week @ 2024-02-27 1799/week @ 2024-03-05 2846/week @ 2024-03-12 2565/week @ 2024-03-19 1939/week @ 2024-03-26 3529/week @ 2024-04-02 2557/week @ 2024-04-09 2464/week @ 2024-04-16

10,686 downloads per month

MIT/Apache

22KB
348 lines

CachedHash

Build Status Crates.io Docs.rs

For a type T, CachedHash<T> wraps T and implements Hash in a way that caches T's hash value. This is useful when T is expensive to hash (for example if it contains a large vector) and you need to hash it multiple times with few modifications (for example by moving it between multiple HashSets).

Stored hash is invalidated whenever the stored value is accessed mutably (via DerefMut, AsMut, BorrowMut or explicitly via a provided associated function). In order for the hash to be invalidated correctly the stored type cannot use interior mutability in a way that affects the hash. If this is the case, you can use CachedHash::invalidate_hash to invalidate the hash manually.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps