Background
We're using hashing for both the local cache and the remote cache.
However, hashing performance is costly. We should not use hashing for local cache since we don't need to share the cache with others.
Instead, we can use git diff to identify changing modules
Expectation
Using git diff for local cache
Background
We're using hashing for both the local cache and the remote cache.
However, hashing performance is costly. We should not use hashing for local cache since we don't need to share the cache with others.
Instead, we can use
git diffto identify changing modulesExpectation
Using
git difffor local cache