Refresh OutputCache Profile on Demand
问题 I am using an OutputCache Profile to cache on the server some json data. [HttpGet] [OutputCache(CacheProfile = "1HourCacheProfile")] public JsonResult GetBranches() { var result = mMapper.Map<List<IntItem>>(mConfigurationServices.GetBranches()); return Json(new { list = result }, JsonRequestBehavior.AllowGet); } The profile is registered in Web.config as below I want to hook somehow a refresh logic on this cached output on different actions that are updating my source. I have found some