When someone uses the OutputCache directive in an ASP.NET WebForms/MVC application, does it actually do any caching server-side, like using the Cache or does it only setup some properties in the Response object like the Cache-Control property?

Cheers :)

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Output Caching caches the entire rendered markup of an ASP.NET web page or User Control for a specified duration.

link|improve this answer
yeah - but where? u are saying.. in the memory instead of just setting the response data? – Pure.Krome Jun 1 '10 at 5:54
You can choose how the output-cache is stored with the OutputCacheLocation Enum: msdn.microsoft.com/en-us/library/… – Espo Jun 1 '10 at 6:04
1  
The OutputCacheLocation only tells the server how to set the HTTP header. The server will still cache the rendered output and store it in memory in case the browser requests the content again (regardless of what the header tells it to do). – Stephen M. Redd Jun 1 '10 at 6:21
feedback

It caches the results and stores them in memory on the server.

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.