有没有办法在不重新启动的情况下清除或重置整个网站的输出缓存?
我刚开始在网站上使用 outputcache,当我在设置时出错时,我需要一个可以浏览到的页面来重置它。
有没有办法在不重新启动的情况下清除或重置整个网站的输出缓存?
我刚开始在网站上使用 outputcache,当我在设置时出错时,我需要一个可以浏览到的页面来重置它。
这应该可以解决问题:
Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Dim path As String
path="/AbosoluteVirtualPath/OutputCached.aspx"
HttpResponse.RemoveOutputCacheItem(path)
End Sub
将以下代码添加到控制器或页面代码:
HttpContext.Cache.Insert("Page", 1);
Response.AddCacheItemDependency("Page");
要清除输出缓存,请在控制器中使用以下命令:
HttpContext.Cache.Remove("Page");