I have a site that dynamically loads website contents based on domain host name, served from IIS7. All of the domains share a cached collection of settings. The settings are being flushed from the cache on almost every page request, it seems. This is verified by logging the times at which the Cache value is null and reloaded from SQL. This codes works as expected on other servers and sites. Is it possible that ASP.NET Cache is being stored separately for each domain host name?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Having different host headers for your site will not affect the cache.

There are a few reasons why your Cache might be getting flushed. Off the top of my head I would say either your AppDomain is getting dumped, your web.config file is getting updated, or some piece of code is explicitly expiring/clearing out your cache.

link|improve this answer
feedback

The cache is per application, I would look at a few other items.

  1. Is your application pool recycling (Timeout, memory limit, file changes, other)
  2. Do you have Web Gardening Enabled, this would create different buckets for each garden thread
link|improve this answer
feedback

One other thing to check -- how much memory is available? The ASP.NET cache will start ejecting stuff left and right once it senses a memory crunch. Remember, RAM is expensive and valuable storage . . .

link|improve this answer
As it turns out Wyatt, I believe RAM availability is our problem. Despite the resource monitor displaying plenty of unused RAM, everything points to Cache being flushed by system trying to recover memory. – Corgalore Dec 29 '10 at 4:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.