I've just implemented a SQLResource provider in my MVC2 application. When I change something in the database by hand or by a webform, I want the ResourceProvider to drop all it's resources and fetch them again from the database.

Does any one now how I can clear this ResourceCache that is managed by ASP.NET's own API?

Many thanks in advance

link|improve this question

71% accept rate
When you implemented your resource provider, how did you handle caching of resources? Can we see some of your implementation? – Matthew Abbott Jul 2 '10 at 8:46
feedback

1 Answer

When you implementing SQLResourceProvider you should use caching together with database utility class. When creating cache you can define policy which contains ChangeMonitors property.I think adding SqlCacheDepency item to ChangeMonitors property is what you looking for. Take a look a this classes SqlCacheDepency , CacheItemPolicy. I can provide code if you need it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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