Asp.Net缓存

希望减少每次数据库的范围可以考虑用缓存。。

缓存分永久缓存、时间缓存、和依赖缓存。。

1.永久缓存

if (Cache["cache"]!=null)

{
  
}else
{
  Cache.Insert("cache", "test");
}

2.时间缓存。时间过期缓存自动清空

if (Cache["cache"]!=null)
{

}else
{

  //第三个参数基本为null 时间都是秒。下面表示缓存10秒后清空。
  Cache.Insert("cache", "test",null,DateTime.Now.AddSeconds(10),System.Web.Caching.Cache.NoSlidingExpiration);
}

3.依赖缓存。

if (Cache["data"] == null)
{

  //依赖缓存基本都是依赖某个文件等。。可以是永久依赖也可以时间依赖

string fileUrl = Server.MapPath("Key.txt");
System.Web.Caching.CacheDependency cdp = new System.Web.Caching.CacheDependency(fileUrl);
StreamReader sr = new StreamReader(fileUrl, System.Text.Encoding.GetEncoding("GB2312"));
string s = sr.ReadLine();
sr.Close();
Cache.Insert("data", s, cdp);

}

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。