G
Guest
Hi Everybody,
I'm trying to save some items in the asp.net cache, but they are removed
from the cache WAY before they are supposed to (at least as I understand the
documentation).
I add the object to the cache using
this.Context.Cache.Insert(key, userInfo, null,
System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(10),
System.Web.Caching.CacheItemPriority.Default,
new System.Web.Caching.CacheItemRemovedCallback(itemRemoved));
but the Item is removed from the cache (with reason of underused) after
something like 1 minute.
What is going on here?
Thanks,
Nadav
I'm trying to save some items in the asp.net cache, but they are removed
from the cache WAY before they are supposed to (at least as I understand the
documentation).
I add the object to the cache using
this.Context.Cache.Insert(key, userInfo, null,
System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(10),
System.Web.Caching.CacheItemPriority.Default,
new System.Web.Caching.CacheItemRemovedCallback(itemRemoved));
but the Item is removed from the cache (with reason of underused) after
something like 1 minute.
What is going on here?
Thanks,
Nadav