caching - Prevent IIS from flushing cache -


i'm trying iis not flush cached data, loading of pages after period without requests can faster. far i've tried this, success:

  • define infinite time "object cache ttl" property;
  • unchecked on iis (version 6.0) option "recycle worker processes";
  • unchecked on iis option "shutdown worker processes after being idle..";
  • set cache activityperiod "0".

what missing? there forcing cache flushed after time idle?

if using asp.net, can control caching web.config settings or programatically.

look here: http://www.15seconds.com/issue/040518.htm


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -