这篇文章主要介绍“asp.net缓存数据添加方法是什么”,在日常操作中,相信很多人在ASP.net缓存数据添加方法是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”ASP.NET缓存数据添加方法是什么”的疑
这篇文章主要介绍“asp.net缓存数据添加方法是什么”,在日常操作中,相信很多人在ASP.net缓存数据添加方法是什么问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”ASP.NET缓存数据添加方法是什么”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
ASP.NET缓存数据添加需求概述
ASP.NET使用缓存机制,将需要大量服务器资源来创建的对象存储在内存中。缓存这些类型的资源会大大改进应用程序的性能。缓存是有Cache类实现的,可以通过对缓存设置优先级CacheItemPriority枚举值控制内存不够时的“清理”优先顺序。还可以为缓存设置过期策略,以及为缓存设置依赖项。
ASP.NET缓存数据添加(将数据项添加到缓存中)
通过键值对添加
Cache["CacheItem"] = "Cached Item";
通过Insert 方法添加
Insert 方法向缓存添加项,并且已经存在与现有项同名的项,则缓存中的现有项将被替换。
Cache.Insert("CacheItem", "Cached Item");
指定依赖项并添加(对添加到缓冲中的数据项指定依赖项)
string[] dependencies = { "Dependences" }; Cache.Insert("CacheItem", "Cached Item", new System.WEB.Caching.CacheDependency(null, dependencies));
数据项依赖一个XML文件的情况:
Cache.Insert("CacheItem", "Cached Item", new System.Web.Caching.CacheDependency( Server.MapPath("XMLFile.xml")));
数据项依赖多个依赖项的情况:
System.Web.Caching.CacheDependency dep1 = new System.Web.Caching.CacheDependency(Server.MapPath("XMLFile.xml")); string[] keyDependencies2 = { "CacheItem1" }; System.Web.Caching.CacheDependency dep2 = new System.Web.Caching.CacheDependency(null, keyDependencies2); System.Web.Caching.AggregateCacheDependency aggDep = new System.Web.Caching.AggregateCacheDependency(); aggDep.Add(dep1); aggDep.Add(dep2); Cache.Insert("CacheItem", "Cached Item", aggDep);
设置过期策略并添加
添加一分钟绝对过期时间到缓存中:
Cache.Insert("CacheItem", "Cached Item", null, DateTime.Now.AddMinutes(1d), System.Web.Caching.Cache.NoSlidingExpiration);
添加10 分钟弹性过期时间到缓存中:
Cache.Insert("CacheItem", "Cached Item", null, System.Web.Caching.Cache.NoAbsoluteExpiration, new TimeSpan(0, 10, 0));
设置优先级并添加
调用 Insert 方法,从 CacheItemPriority 枚举中指定一个值。
Cache.Insert("CacheItem", "Cached Item", null, System.Web.Caching.Cache.NoAbsoluteExpiration, System.Web.Caching.Cache.NoSlidingExpiration, System.Web.Caching.CacheItemPriority.High, null);
通过Add方法添加
Add 方法将返回您添加到缓存中的对象。另外,如果使用 Add 方法,并且缓存中已经存在与现有项同名的项,则该方法不会替换该项,并且不会引发异常。
string CachedItem = (string)Cache.Add("CacheItem", "Cached Item", null, System.Web.Caching.Cache.NoAbsoluteExpiration, System.Web.Caching.Cache.NoSlidingExpiration, System.Web.Caching.CacheItemPriority.Default, null);
到此,关于“ASP.NET缓存数据添加方法是什么”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!
--结束END--
本文标题: ASP.NET缓存数据添加方法是什么
本文链接: https://lsjlt.com/news/294608.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0