Cache expiring

  • Thread starter Thread starter Bogdan Fiedur
  • Start date Start date
B

Bogdan Fiedur

Hi All,

Recently dot.net cache expires on our web server every 5 seconds.
Any ideas why this happens and how to fix it.

Bogdan Fiedur
 
Yes I'm talking about ASP.net caching in.
We are caching programmatically user data for quick access.

Bogdan Fiedur
 
Could you tell us more about your caching - your directives or code if done
through code?
 
Context.Cache.Add(sCacheKey, userInfo, Nothing,
Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(15),
Caching.CacheItemPriority.Normal, Nothing)

Bogdan
 
Back
Top