I'm working on adding a lot of partial output caching to a quite traffic heavy site. How can I administrate this?

For example is there any way to clear the cache if somethings goes wrong?

Does a server reboot flush the output cache?

I'm running Asp 3.5 on IIS6. Microsoft Server 2003.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

There isn't a GUI in IIS for resetting the cache specifically, but any time the application pool or AppDomain restarts, it will flush the cache.

You can restart the application pool in IIS. Or you can touch (re-save the file without any changes) the web.config file to restart the AppDomain.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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