在Global.aspx中的Application_End()期间,HttpContext.Current为null.我仍然希望能够访问缓存 – 它在内存中,所以想看看我是否可以引用它来保存位到磁盘.
问题 – 当HttpContext.Current为null时,有没有办法在内存中引用缓存?
也许我可以创建一个全局静态变量,它将存储指向缓存的指针,我可以在HTTP请求(pseudo:“static< pointer X>”= HttpRequest.Current)上更新),并通过Application_End()中的指针检索对缓存的引用,?
当没有Http请求时,是否有更好的方式访问内存中的Cache?
解决方法
在Application_End事件之内,所有缓存对象都已经被处理了.
如果要在缓存对象被安装之前访问缓存对象,则需要使用这样的命令来将对象添加到缓存中:
如果要在缓存对象被安装之前访问缓存对象,则需要使用这样的命令来将对象添加到缓存中:
将名称空间System.Web.Caching导入到您正在使用添加对象缓存的应用程序.
//Add callback method to delegate var onRemove = new CacheItemRemovedCallback(RemovedCallback); //Insert object to cache HttpContext.Current.Cache.Insert("YourKey",YourValue,null,DateTime.Now.AddHours(12),Cache.NoSlidingExpiration,CacheItemPriority.NotRemovable,onRemove);
而当这个对象要被处理时,将被称为下面的方法:
private void RemovedCallback(string key,object value,CacheItemRemovedReason reason) { //Use your logic here //After this method cache object will be disposed }
最好的问候,迪马.