asp.net 缓存Cache的使用总结
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net 缓存Cache的使用总结相关的知识,希望对你有一定的参考价值。
1).获取缓存值 object o = HttpRuntime.Cache.Get("Key"); 2).设置相对过期缓存值有两种写法 第一种: HttpRuntime.Cache.Insert("Key", "Value", null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromSeconds(30)); 第二种: HttpRuntime.Cache.Insert("Key","Value", null, DateTime.MaxValue, TimeSpan.FromSeconds(30)); 3)设置绝对过期缓存值两种写法 HttpRuntime.Cache.Insert("Key","Value",null,DateTime.Now.AddMinutes(10),System.Web.Caching.Cache.NoSlidingExpiration); 第二种: HttpRuntime.Cache.Insert("Key", "Value", null, DateTime.Now.AddMinutes(10), TimeSpan.Zero); 3)移除缓存 HttpRuntime.Cache.Remove("Key");
以上是关于asp.net 缓存Cache的使用总结的主要内容,如果未能解决你的问题,请参考以下文章
Asp.net缓存技术(HttpRuntime.Cache)