如何在用户关闭浏览器窗口或过期时自动删除此缓存的特定键(如会话对象)时,如何在所有用户可访问的ASP.NET中使用缓存,而不仅仅是特定的用户上下文?
答案 0 :(得分:6)
所有用户都可以访问缓存,您可以将其设置为在一段时间后过期:
Cache.Insert("key", myTimeSensitiveData, null,
DateTime.Now.AddMinutes(1), TimeSpan.Zero);
通过实现global.asax的会话结束事件,您可以在会话到期时删除缓存条目
void Session_End(Object sender, EventArgs E)
{
Cache.Remove("MyData1");
}
有关缓存
的更多详细信息,请参阅this<强>编辑:强> 关于如何在用户关闭浏览器时做出反应的问题,我认为这不是直截了当的。您可以在客户端尝试javascript来处理“卸载”事件,但这不可靠,因为浏览器/客户端可能只是崩溃。在我看来,“心跳”方法可行,但需要额外的努力。有关详细信息,请参阅此question。
答案 1 :(得分:0)
您必须使用the Session_OnEnd() event从缓存中删除该项目。但是,如果用户只是关闭浏览器,则不会触发此事件。该事件仅在会话超时时触发。您应该添加一个检查以查看该项目是否已被删除:
public void Session_OnEnd()
{
// You need some identifier unique to the user's session
if (Cache["userID"] != null)
Cache.Remove("userID");
}
此外,如果您希望缓存中的项目在用户会话期间保持活动状态,则您需要对项目使用滑动过期并使用每个请求进行刷新。我在OnActionExecuted(仅限ASP.NET MVC)中执行此操作。
protected override void OnActionExecuted(ActionExecutedContext filterContext)
{
// Put object back in cache in part to update any changes
// but also to update the sliding expiration
filterContext.HttpContext.Cache.Insert("userID", myObject, null, Cache.NoAbsoluteExpiration,
TimeSpan.FromMinutes(20), CacheItemPriority.Normal, null);
base.OnActionExecuted(filterContext);
}