zoukankan      html  css  js  c++  java
  • Asp.net(C#)显示所有缓存 清除所有缓存

     //清除所有缓存
        protected void RemoveAllCache() 
        

           System.Web.Caching.Cache _cache 
    = HttpRuntime.Cache; 
           IDictionaryEnumerator CacheEnum 
    = _cache.GetEnumerator(); 
           ArrayList al 
    = new ArrayList(); 
           
    while (CacheEnum.MoveNext()) 
           

              al.Add(CacheEnum.Key); 
           }
     
           
    foreach (string key in al) 
           

              _cache.Remove(key); 
           }
     
           show(); 
        }
     
        
    //显示所有缓存 
        void show() 
        

           
    string str = ""
           IDictionaryEnumerator CacheEnum 
    = HttpRuntime.Cache.GetEnumerator(); 
           
           
    while (CacheEnum.MoveNext()) 
           

              str 
    += "缓存名<b>[" + CacheEnum.Key+"]</b><br />" ; 
           }
     
           
    this.Label1.Text = "当前网站总缓存数:" + HttpRuntime.Cache.Count + "<br />"+str; 
        }
  • 相关阅读:
    List接口的实现类
    Java 容器概述
    PayPal支付接口方式(checkout)集成
    Java Bio、Nio、Aio区别
    Java Aio
    Java Nio
    Java Bio
    Java Io流
    Java 23种设计模式
    SQL检测超时工具类
  • 原文地址:https://www.cnblogs.com/wangyong969/p/1356928.html
Copyright © 2011-2022 走看看