I am using ASP.NET MVC and EF.

To do cache invalidation I override the SaveChanges method and every time that SaveChanges is called, I update a field in database to flag that something changed.(I am using database to works with WebFarm scenario).

To clear the cache, I need to only query this field on database, if it is different from a static variable in C#, I clear the cache.

At first try, I called this method in BeginRequest, but BeginRequest is called for all request, including images.

Now I thinking if GlobalFilter is a good ideia, what do you think?

Thanks.

link|improve this question

I found a problem. Route Constraints are executed before GlobalFilters – Fujiy Nov 12 '11 at 21:26
I think that is a better idea to clear the cache at DbContext constructor, since SaveChanges() mark the cache as invalid – Fujiy Nov 12 '11 at 21:33
Perhaps not make it so magic? There's some interesting discussion on caching on the EF Design Blog. – Scott Hanselman Nov 19 '11 at 0:21
I recently read your blog about dasBlog and how it scale. So I decided to use OutputCache on my blog engine as well. It´s Open Source and I published yesterday at Codeplex(fujiyblog.codeplex.com). At the end, I used much more OutputCache than "Data" cache, because when I invalid OutputCache, I clear the Cache too. I am thinking to remove all Data cache and maintain just OutputCache´s – Fujiy Nov 19 '11 at 1:57
I am using at production and I didn´t have any problems – Fujiy Feb 24 at 16:32
feedback

closed as not constructive by casperOne Feb 24 at 17:39

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.