会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
PetterLiu
Let the instinct guide you.
博客园
::
首页
::
新随笔
::
联系
::
订阅
::
管理
公告
2010年2月23日
如何从Asp.net应用程序中移除所有Cache对象
摘要: Cache是Asp.net中非常强大的功能,我们使用它来提高应用程序的性能。有时我们需要在某个任务结束后移除所有Cache对象,如何做呢?有以下两段代码可以使用: 1: IDictionaryEnumerator cacheEnumerator = HttpContext.Current.Cache.GetEnumerator(); 2: 3: while (cacheEnumerator.Mov...
阅读全文
posted @ 2010-02-23 14:26 PetterLiu
阅读(466)
评论(0)
推荐(1)
编辑