Dear Bazel experts,
I have a question about remote and disk caching.
I am using bazel 0.22
I want to use both local disk caching (using --disk_cache) and also remote caching
as per this doc
using --experimental_remote_spawn_cache --remote_http_cache=
http://IP:9090/
for that.
I want bazel to 1st use disk_cache and if it donot find object there use remote cache.
For that, do I need to set any variable/parameter or bazel will do that by itself (First look for disk cache and then remote cache)?
Thanks
-Gaurav