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
for 2 components, on linux. the cache works quite well when compiling a component again. but when compiling the second component it fails. both comonents have approximately 600 crates, most of them same version. so download into CARGO_HOME is done only one time for 95% of the crates. compile is 2 times 600, 100% cache miss.
Its a cargo flag that allows you to plug third-party programs into Cargo. What those third-party programs do is not up to Cargo which is the intent of a flag like this.
Problem
am using
for 2 components, on linux. the cache works quite well when compiling a component again. but when compiling the second component it fails. both comonents have approximately 600 crates, most of them same version. so download into CARGO_HOME is done only one time for 95% of the crates. compile is 2 times 600, 100% cache miss.
Steps
during compile one can check the cache state
``
❯ sccache --show-stats
Compile requests 86
Compile requests executed 51
Cache hits 0
Cache misses 45
Cache misses (Rust) 45
The text was updated successfully, but these errors were encountered: