为了账号安全,请及时绑定邮箱和手机立即绑定

清除缓存有时会报这个错,不知道如何处理它

清除缓存有时会报这个错,不知道如何处理它

一只萌萌小番薯 2018-08-14 11:10:59
    try             {             IDictionaryEnumerator DicCache = HttpRuntime.Cache.GetEnumerator();            int count = HttpRuntime.Cache.Count;            for (int i = 0; i < count; i++)             {                 DicCache.MoveNext();                 HttpRuntime.Cache.Remove(DicCache.Entry.Key.ToString());             }             }            catch (Exception)             {                throw;             }
查看完整描述

1 回答

?
炎炎设计

TA贡献1808条经验 获得超4个赞

试试下面的代码

try{
    IDictionaryEnumerator DicCache = HttpRuntime.Cache.GetEnumerator();    while(DicCache.MoveNext())
    {
        HttpRuntime.Cache.Remove(DicCache.Entry.Key.ToString());
    }
}catch (Exception)
{    throw;
}


查看完整回答
反对 回复 2018-09-13
  • 1 回答
  • 0 关注
  • 419 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信