asp.net – ObjectCache的“Set”和“Add”有什么区别?

前端之家收集整理的这篇文章主要介绍了asp.net – ObjectCache的“Set”和“Add”有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
doc

Add(CacheItem,CacheItemPolicy) : When overridden in a derived class,tries to insert a cache entry into the cache as a CacheItem instance,and adds details about how the entry should be evicted. 07001

Set(CacheItem,inserts the cache entry into the cache as a CacheItem instance,specifying information about how the entry will be evicted. 07002

我在文字(尝试)和签名(set是一个sub,add返回一个布尔值)中看不到什么区别,但是我不知道我应该使用哪一个,如果两者之间有一些不同的东西.

解决方法

主要区别在于Add()方法尝试插入缓存,而不会覆盖具有相同键的现有缓存条目.

而Set()方法将覆盖具有相同键的现有缓存条目. [但是如果一个项目的键不存在,插入将作为一个新的缓存条目进行].

以上是功能上的区别.

语法差异:

一个重要的语法区别是,Add()方法返回一个布尔值,如果插入成功则返回true;如果缓存中已经存在与项目相同的密钥项,则返回false.
Set()方法有一个void返回类型.

最后一点,Add()方法的内部实现实际上调用其对应版本的AddOrGetExisting()方法.

public virtual bool Add(CacheItem item,CacheItemPolicy policy)
{
    return this.AddOrGetExisting(item,policy) == null;
}
原文链接:https://www.f2er.com/aspnet/250426.html

猜你在找的asp.Net相关文章