Click here to Skip to main content
Licence GPL3
First Posted 16 Feb 2009
Views 25,682
Downloads 130
Bookmarked 18 times

ASP.NET MVC Result Cache

By Jorge Bay Gondra | 17 Feb 2009
Cache the ActionResult using an ActionFilter
1 vote, 11.1%
1

2
3 votes, 33.3%
3
1 vote, 11.1%
4
4 votes, 44.4%
5
3.67/5 - 9 votes
μ 3.67, σa 2.44 [?]

Introduction

The idea behind this cache approach is plain simple: the web application should cache ActionResults that demand heavy CPU/DB time to load. Currently, the ASP.NET MVC Framework has a cache feature, the OutputCache, that works by storing a copy of the resulting webpage. This feature does not fit a scenario where the webpage is dependant, for example, on session data.

Using the Code

Add the ResultCache attribute to an action of a controller.

[ResultCache(Duration=60)]
public ActionResult About()
{
    //code that demands heavy CPU/DB time to execute 
    //...

    ViewData["DummyData"] = dummy;

    return View();
}

Here is the ViewPage code:

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<h2>About</h2>
<p>
Sample ViewData value: <%=ViewData["DummyData"]%>
</p>
<p>
Sample Session dependant data <%=Session["UserName"] %>
</p>

The code in the ViewPage is not affected by using the ResultCache. In the sample, the View shows the data from the ViewData (can be cached) and the Session.

How It Works

After the Action executes, the Action Filter stores the ActionResult in the application Cache.

public override void OnActionExecuted(ActionExecutedContext filterContext)
{
	//Add the ActionResult to cache	
    filterContext.HttpContext.Cache.Add(this.CacheKey, filterContext.Result, 
      Dependency, DateTime.Now.AddSeconds(Duration), 
      System.Web.Caching.Cache.NoSlidingExpiration, Priority, null);

	//Add a value in order to know the last time it was cached.
    filterContext.Controller.ViewData["CachedStamp"] = DateTime.Now;

    base.OnActionExecuted(filterContext);
}

The next time the Action is invoked, the attribute will retrieve the result from cache preventing the Action from executing.

public override void OnActionExecuting(ActionExecutingContext filterContext)
{
    string url = filterContext.HttpContext.Request.Url.PathAndQuery;
    this.CacheKey = "ResultCache-" + url;

    if (filterContext.HttpContext.Cache[this.CacheKey] != null)
    {
        //Setting the result prevents the action itself to be executed
        filterContext.Result = 
		(ActionResult)filterContext.HttpContext.Cache[this.CacheKey];
    }

    base.OnActionExecuting(filterContext);
}

About the Code

This cache approach is used in the open source MVC site prsync.com.
Get the full source code of the site at CodePlex.

History

  • February 16, 2009 - Article submitted
  • February 17, 2009 - Code comments improved

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

Jorge Bay Gondra

Software Developer

Spain Spain

Member
Jorge has been working with Microsoft technologies for more than 10 years. Born in Argentina, he lives in Spain since 2004.
He worked as a consultant for mayor companies including Log, HP and Avanade and holds some technical certifications including MCSD and MCAD.
 
Currently, he is developing the open source asp.net mvc forum software nearforums and the open source press release site prsync.com.
 
Follow him on Twitter: twitter.com/jorgebg
 
Contact: jorgebaygondra at gmail


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralAwesome solution! Pinmemberyookunkun22:18 27 Apr '11  
GeneralMy vote of 5 PinmemberJared McGuire7:02 24 Sep '10  
GeneralGood to know PinmemberDonsw9:32 5 Mar '09  
GeneralMy vote of 1 PinmemberAlKatawazi10:56 18 Feb '09  
GeneralRe: My vote of 1 PinmemberJorge Bay Gondra23:17 18 Feb '09  
GeneralGreat article... PinmemberJosemaproject6:26 16 Feb '09  
Hi,
 
Great article, it solves my caching problems and centralizes all in one.
 
Thanks a lot.
Kind Regards.
Josema.
RantAlready been done by the Framework! PinmemberAlKatawazi10:55 18 Feb '09  
GeneralRe: Already been done by the Framework! PinmemberJorge Bay Gondra23:16 18 Feb '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 17 Feb 2009
Article Copyright 2009 by Jorge Bay Gondra
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid