I'm looking to set views dependent on cached objects so that when they are expired or explicitly removed from cache the cached result is immediately expired so that there is no chance the outdated HTML is rendered.
For that, I'll be using:
this.Response.AddCacheItemDependencies(myCacheKeysArray);
Is it guaranteed that the outdated action result will never be returned?