I see that a goal_rule is always uncacheable, but ...
# plugins
s
I see that a goal_rule is always uncacheable, but are the rules invoked by a goal_rule cacheable?
1
f
yes, the other rules invoked are cached (or not if they themselves are marked as uncacheable)
(and side note, even "uncached" rules are only evaluated once per Pants "session" - a single CLI invocation usually)
s
Got it, thanks!