8 我有一个将数据放入缓存的IIS 6.0网站。可悲的是它还没有到期。有没有一种方法(实用程序或命令)可以强制清除该缓存,而无需重新启动计算机或重新启动Web服务器? 我已经尝试过重新启动应用程序池,但没有成功。 iis-6 cache — 自动 source
2 您可以使用一些ASP.NET代码来做到这一点: foreach(DictionaryEntry entry in System.Web.HttpContext.Current.Cache) { System.Web.HttpContext.Current.Cache.Remove((string)entry.Key); } — 混沌 source