vote up 6 vote down star
11

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.

flag

4 Answers

vote up 6 vote down check

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|flag
3  
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 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 at 21:48
vote up 11 vote down

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;
}
}

ICacheService has just one Get() method defined.

You use it like this:
cacheProvider.Get("cache id", (delegate method if cache is empty));
So, Cache provider will check if there's anything by "cache id" in cache, and if there's not, it will call delegate method to fetch data and store it in cache.

Realworld example:

var products=cacheService.Get("catalog.products", ()=>productRepository.GetAll())
link|flag
Is there a way to pass parameters to the callback? – Todd Smith Dec 8 '08 at 18:16
What CacheService are you referring to? Can you please provide a more complete example. – Coolcoder Dec 11 '08 at 14:24
Coolcoder: there's not much more too it, that's almost all the code. – Anthony Dec 16 '08 at 14:58
Here I use system.web.caching, but caching object can be injected in constructor with ioc/di, you then you could have disk caching, probably velocity/memcache, etc. – Hrvoje Jun 9 at 7:52
vote up 1 vote down

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 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 addred to the cache - you just don't know.

link|flag
vote up 0 vote down

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|flag
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

Your Answer

Get an OpenID
or

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