Hello! Are `--changed-since` and pants cache for C...
# general
s
Hello! Are
--changed-since
and pants cache for CI listed here meant to be either-or approaches, or is the most preferred way to use both at the same time?
h
They are complementary.
--changed-since
allows you to only act on files that are affected by (transitively dependent) changes. But then some of the work that needs to be done could still be cached.
It is true that if the cache is perfectly populated then
--changed-since
is less necessary since the extra work it saves could be short-circuited, but that is a big if
s
Thank you!