欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

.net清空所有Cache的实现代码

程序员文章站 2024-03-09 09:16:47
复制代码 代码如下:idictionaryenumerator cacheenum = cache.getenumerator(); while (cacheenum.mo...
复制代码 代码如下:

idictionaryenumerator cacheenum = cache.getenumerator();
while (cacheenum.movenext())
{
cache.remove(cacheenum.key.tostring());
}
response.write("缓存清空成功");