What’s the best way to disable local cache? Common use case for this is for running tests with the cache off (for the entire duration of the cache)
So far I am patching
LocalConfig.cache_enabled=False
in the tests (code ref) but wanted to check if there is a better way.