Caching in asp.net-mvc - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T04:45:05Zhttp://stackoverflow.com/feeds/question/385986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/385986/caching-in-asp-net-mvc7Caching in asp.net-mvcboris callens2008-12-22T10:51:48Z2009-02-07T05:51:03Z
<p>I would like to cache my most database heavy actions in my asp.net-mvc site.
In my research I have found </p>
<ul>
<li><a href="http://haacked.com/archive/2008/11/05/donut-caching-in-asp.net-mvc.aspx" rel="nofollow">donut caching</a> on Phil's blog</li>
<li><a href="http://weblogs.asp.net/rashid/archive/2008/03/28/asp-net-mvc-action-filter-caching-and-compression.aspx" rel="nofollow">Caching/compressing</a> filters on Kazi's blog</li>
<li>Scott Hansleman's podcast about how they cached things in SO.</li>
</ul>
<p>But I don't feel I get it yet.<br />
I want to be able to cache my POST request depending on several pars. These pars are in an object. So I would like to cache the result of the following request:</p>
<pre><code>public ActionResult AdvancedSearch(SearchBag searchBag)
</code></pre>
<p>Where searchBag is an object that holds (a bunch) of optional search parameters.
My views themselves are light (as they should be), but the data access can be rather time consuming, depending on what fields are filled in in the search bag.</p>
<p>I have the feeling I should be caching on my datalayer, rather then on my actions.<br />
How am I supposed to use the VaryByParam in the OutputCache attribute?</p>
http://stackoverflow.com/questions/385986/caching-in-asp-net-mvc/388175#3881759Answer by Matthew for Caching in asp.net-mvcMatthew2008-12-23T04:25:40Z2008-12-23T04:25:40Z<p>I like to cache in the model or data layer as well. This isolates everything to do with retrieving data from the controller/presentation. You can access the ASP.NET cache from <code>System.Web.HttpContext.Current.Cache</code> or use the Caching Application Block from the Enterprise Library. Create your key for the cached data from the parameters for the query. Be sure to invalidate the cache when you update the data.</p>
http://stackoverflow.com/questions/385986/caching-in-asp-net-mvc/522989#5229893Answer by Andrei Rinea for Caching in asp.net-mvcAndrei Rinea2009-02-07T02:24:06Z2009-02-07T02:24:06Z<p>Or you can be independent of the HttpContex.Current and access Cache from HttpRuntime.Cache :)</p>
http://stackoverflow.com/questions/385986/caching-in-asp-net-mvc/523233#5232331Answer by Haacked for Caching in asp.net-mvcHaacked2009-02-07T05:51:03Z2009-02-07T05:51:03Z<p>Often, OutputCaching can be the most fast and efficient, but only when it meets your requirements. No point in having fast efficient if it's wrong! ;)</p>
<p>In this case, it sounds like caching at the data layer is correct because you have complex caching needs. Sometimes, you can combine the two if the set of parameters which control what output is cached is simple. </p>