up vote 36 down vote favorite
41
share [g+] share [fb]

I have read lots of information about page caching and partial page caching in a MVC application. However, I would like to know how you would cache data.

In my scenario I will be using LINQ to Entities (entity framework). On the first call to GetNames (or whatever the method is) I want to grab the data from the database. I want to save the results in cache and on the second call to use the cached version if it exists.

Can anyone show an example of how this would work, where this should be implemented (model?) and if it would work.

I have seen this done in traditional ASP.NET apps , typically for very static data.

link|improve this question

feedback

6 Answers

up vote 15 down vote accepted

Reference the System.Web dll in your model and use System.Web.Caching.Cache

public string[] GetNames()
{
  if(Cache["names"] == null)
  {
    Cache["names"] = DB.GetNames();
  }
  return (string[])Cache["names"];
}

A bit simplified but I guess that would work. This is not MVC specific and I have always used this method for caching data.

link|improve this answer
17  
I don't recommend this solution: in the return, you might get a null object again, because it's re-reading in the cache and it might have been dropped from the cache already. I'd rather do: public string[] GetNames() { string[] noms = Cache["names"]; if(noms == null) { noms = DB.GetNames(); Cache["names"] = noms; } return (noms); } – Oli Jul 8 '09 at 15:30
I agree with Oli.. getting the results from the actual call to the DB is better than getting them from the cache – CodeClimber Jul 8 '09 at 21:48
Does this work with the DB.GetNames().AsQueryable method of delaying the query? – Chase Florell Aug 9 '10 at 21:56
Not unless you change return value from string[] to IEnumerable<string> – TT. Aug 10 '10 at 8:55
feedback

Here's nice Cache service I use:

public class InMemoryCache: ICacheService
{
    public T Get<T>(string cacheID, Func<T> getItemCallback) where T : class
    {
        T item = HttpRuntime.Cache.Get(cacheID) as T;
        if (item == null)
        {
            item = getItemCallback();
            HttpContext.Current.Cache.Insert(cacheID,item);
        }
        return item;
    }
}

interface ICacheService
{
    T Get<T>(string cacheID, Func<T> getItemCallback) where T : class;
}

Usage:

cacheProvider.Get("cache id", (delegate method if cache is empty));

Cache provider will check if there's anything by the name of "cache id" in the cache, and if there's not, it will call a delegate method to fetch data and store it in cache.

Example:

var products=cacheService.Get("catalog.products", ()=>productRepository.GetAll())
link|improve this answer
Is there a way to pass parameters to the callback? – Todd Smith Dec 8 '08 at 18:16
2  
I've adapted this so that the caching mechanism is used per user session by using HttpContext.Current.Session instead. I've also put a Cache property on my BaseController class so its easy access and updated the constructor allow for DI for unit testing. Hope this helps. – WestDiscGolf Jan 8 '10 at 12:23
1  
This is a basic setup that will work. There are only two things I don't like about it: it requires the code know about both the repository and the caching and it also requires that you know the cache key when asking for the data. This means that you run the risk of having two keys for the same data. Also, it is a pain to look up the key. The caching should be baked in and automated somewhere. – Brendan Enrick Jun 3 '11 at 20:56
1  
@Brendan - and worse still, it has magic strings in place for the cache keys, rather than inferring them from the method name and parameters. – ssmith Jun 3 '11 at 20:58
1  
@ssmith & every1, what is the bestest solution? – Robert Dondo Oct 24 '11 at 12:52
show 7 more comments
feedback

I'm referring to TT's post and suggest the following approach:

Reference the System.Web dll in your model and use System.Web.Caching.Cache

public string[] GetNames()
{ 
    var noms = Cache["names"];
    if(noms == null) 
    {    
        noms = DB.GetNames();
        Cache["names"] = noms; 
    }

    return ((string[])noms);
}

You should not return a value re-read from the cache, since you'll never know if at that specific moment it is still in the cache. Even if you inserted it in the statement before, it might already be gone or has never been added to the cache - you just don't know.

So you add the data read from the database and return it directly, not re-reading from the cache.

link|improve this answer
But doesn't the line Cache["names"] = noms; put in the cache? – Omar Jan 19 '10 at 17:16
1  
@Baddie Yes it does. But this example is different to the first Oli is referring to, because he doesn't access the cache again - the problem is that just doing: return (string[])Cache["names"]; .. COULD result in a null value being returned, because it COULD have expired. It's not likely, but it can happen. This example is better, because we store the actual value returned from the db in memory, cache that value, and then return that value, not the value re-read from the cache. – jamiebarrow Nov 2 '10 at 16:19
feedback

Steve Smith did two great blog posts which demonstrate how to use his CachedRepository pattern in ASP.NET MVC. It uses the repository pattern effectively and allows you to get caching without having to change your existing code.

http://stevesmithblog.com/blog/introducing-the-cachedrepository-pattern/

http://stevesmithblog.com/blog/building-a-cachedrepository-via-strategy-pattern/

In these two posts he shows you how to set up this pattern and also explains why it is useful. By using this pattern you get caching without your existing code seeing any of the caching logic. Essentially you use the cached repository as if it were any other repository.

link|improve this answer
Great posts! Thanks for sharing!! – Mark Good Sep 22 '11 at 12:30
feedback

I have tried this code block in my model after adding System.Web.Caching

var noms = Cache["names"];
    if(noms == null) 
    {    
        noms = DB.GetNames();
        Cache["names"] = noms; 
    }

And on compilation getting error 'System.Web.Caching.Cache' is a 'type' but is used like a 'variable'

link|improve this answer
In MVC 3 you might want to try: HttpRuntime.Cache – Thomas Bratt Jul 14 '11 at 15:44
You should leave this as a comment on the other answer instead of making it its own answer. – Jacob Oct 24 '11 at 17:37
feedback

You can also try and use the caching built into ASP MVC:

Add the following attribute to the controller method you'd like to cache:

[OutputCache(Duration=10)]

In this case the ActionResult of this will be cached for 10 seconds.

More on this here

link|improve this answer
OutputCache is for the rendering of Action , the question was in relation to caching data not the page. – Coolcoder Dec 11 '08 at 14:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.