For example, my home page shows a few of the newest products. I would like to set this page to be cached indefinitely, and then when I create a new product I could delete the cached page in my code, rather than caching for a certain time period, and hoping users are seeing the most up to date content.

Also, once I clear the cache can I use an HttpWebRequest to invoke those pages to be cached again so that a user doesn't have to?

I understand that I can use partial page caching, but i'm really not interested in breaking up my pages into user controls.

Note: I do have access to the server, and IIS.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

If the database your using is SQL Server, you can use SQL cache dependency (SqlCacheDependency) for the purpose of caching, it enable you to cache your pages that are dependent on data from database. As soon as the data in your database table changes, it will invalidate the cache and next time the new page will be generated... For more and sample, here is the link: http://msdn.microsoft.com/en-us/library/e3w8402y(v=vs.80).aspx and also from www.asp.net you can download a video tutorial too

link|improve this answer
I see the way this works is you set a polling interval in the web.config. This is probably the way I will go, but doing it manually in my code could save hundreds if not thousands of db requests over the course of a day. – Nick Aug 22 '11 at 4:47
feedback

If you don't have any action on the page (like submit,...) which causes Postback:

In Render sub of the page, get the page content string and set into the Application["YourKey"]. (On first call)

After that, in Page_Init you can simply check if the Application["YourKey"] has value, if yes, use response.write(Application["YourKey"]).

When you want to reset the cache, simply set the Application["YourKey"] to nothing.

link|improve this answer
feedback

When I reinstalled Windows and all the dev stuff on my desktop last week, I noted that IIS7 has a dynamic caching mode now. It's not installed by default. Here's some info on it. Hope it helps.

http://blogs.iis.net/bills/archive/2007/05/02/iis7-output-caching-for-dynamic-content-dramatically-speed-up-your-asp-and-php-applications.aspx

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.