vote up 9 vote down star
6

We've just started using LINQ to SQL at work for our DAL & we haven't really come up with a standard for out caching model. Previously we had being using a base 'DAL' class that implemented a cache manager property that all our DAL classes inherited from, but now we don't have that. I'm wondering if anyone has come up with a 'standard' approach to caching LINQ to SQL results?

We're working in a web environment (IIS) if that makes a difference. I know this may well end up being a subjective question, but I still think the info would be valuable.

EDIT: To clarify, I'm not talking about caching an individual result, I'm after more of an architecture solution, as in how do you set up caching so that all your link methods use the same caching architecture.

flag

76% accept rate

5 Answers

vote up 5 vote down check

A quick answer: Use the Repository pattern (see Domain Driven Design by Evans) to fetch your entities. Each repository will cache the things it will hold, ideally by letting each instance of the repository access a singleton cache (each thread/request will instantiate a new repository but there can be only one cache).

The above answer works on one machine only. To be able to use this on many machines, use memcached as your caching solution. Good luck!

link|flag
Note that this approach doesn't really have much to do with LINQ or LINQ to SQL. Repository-based APIs aren't composable with further LINQ queries. – Pete Montgomery Apr 27 at 13:43
You should turn off Object Tracking when using the Repository pattern. Otherwise this will break at the discretion of the Repository: repository.Get(1).ReferencedTable.Id ...since ".ReferencedTable" will be hard for the cached list to look up without a context. – bzlm Oct 3 at 13:37
vote up -2 vote down

memcached is a good thing for DAL

link|flag
1  
NAN is also good with DAL. also enjoy a good LASSI afterward – bzlm Sep 28 at 21:25
vote up 0 vote down

See the 'GetReferenceData' method in the 'ReferenceData' class in this article: http://blog.huagati.com/res/index.php/2008/06/23/application-architecture-part-2-data-access-layer-dynamic-linq/

It uses the asp.net page cache for caching data retrieved using L2S.

link|flag
vote up 7 vote down

My LINQ query result cache is probably just what you're looking for.

var q = from c in context.Customers
        where c.City == "London"
        select new { c.Name, c.Phone };

var result = q.Take(10).FromCache();

Pete.

link|flag
vote up 1 vote down

It's right under your nose:

List<TableItem> myResult = (from t in db.Table select t).ToList();

Now, just cache myResult as you would have cached your old DAL's returned data.

link|flag

Your Answer

Get an OpenID
or

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