up vote 0 down vote favorite
share [g+] share [fb]

Using MVC 1.0

How can i cache a page but not a user control on it.

lets say i have a tag cloud on my master page, tag cloud being a user control that i want refreshed only every x minutes.

do i need to do [Donut caching][1]?

or has it made it to MVC 1.0 ?

can it be done in client browser or only server caching ?

[1]: http://haacked.com/archive/2008/11/05/donut-caching-in-asp.net-mvc.aspx/"Donut caching"

link|improve this question

71% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You have to do Donut caching on the server side. It is possible to do it on the client browser, but you would have to make a AJAX request after the fact, which is not really optimal. StackOverflow actually uses a form of this for their own tag cloud.

link|improve this answer
feedback

Yes, you have to use "post cache substitution" (also known as "donut caching"). ASP.NET automatically turns server-only caching when using "post cache substitution". Also consider using custom HtmlHelper extension method instead of UserControl (it's more ASP.NET MVC - like). There are some limitations in using "donut caching" on ASP.NET MVC. Maybe you shoud look at this question.

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.