The dyn-cache crate provides incremental caching for Rust function invocations.
CacheMiss
handles initialization of borrowed inputs for storage, this removes arguments from
some lower-level functions.SharedLocalCache
/`SharedSendCache
have their intermediate dependencies
retained as long as a transitive dependent is used in a revision.topo::cache
module.{LocalCache,SendCache}::cache
wraps cache_with
for types that impl Clone
.{LocalCache,SendCache}::hold
wraps cache_with
for queries that don't need returns.CacheMiss
struct is used to ensure storage happens where the failed lookup happened.Cache
/SharedCache
to SendCache
/SharedSendCache
.