2

HttpContext.Current.Cache用来将对象保存到内存中。

我的代码看起来像这样:

public void Add(string key, object data, TimeSpan slidingExpirationTime)
{
    HttpContext.Current.Cache.Insert(key, data, null, System.Web.Caching.Cache.NoAbsoluteExpiration, slidingExpirationTime);
}

public T Get<T>(string key)
{
    T itemStored = (T)HttpContext.Current.Cache.Get(key);
    if (itemStored == null)
        itemStored = default(T);

    return itemStored;
}

这工作非常快!

我很好奇它是如何将对象保存到内存中的。

它是保存指针值,还是对对象进行哈希处理,然后将其保存到内存中,当我请求它时,它会反序列化它?

4

1 回答 1

1

数据,是一种object从内部插入缓存键的函数,我们看到很简单,保持对object

internal CacheEntry(string key, object value, CacheDependency dependency, CacheItemRemovedCallback onRemovedHandler, DateTime utcAbsoluteExpiration, TimeSpan slidingExpiration, CacheItemPriority priority, bool isPublic) : base(key, isPublic)
{
    if (value == null)
    {
        throw new ArgumentNullException("value");
    }
    .... code ....
    this._value = value;
    .... code ....
}
于 2013-03-07T13:56:02.810 回答