I read some articles about SqlCacheDependency. I think it is a really cool way for updating caches, but i'm not sure how i can handle this technologie if my application is a n-tier architekture.

Is this just useful if my program is a small webapplication, or is there also a way for use in big n-tier architektures?

link|improve this question

Do you mean that your application is distributed across multiple servers? Especially the database layer? – Robert Koritnik Jul 5 '09 at 14:21
Yes, the DAL in our Projekt is used by several different applications. From the ASP.Net Applications in the WebFarm to the Logic-Server with BizTalk. – michl86 Jul 6 '09 at 14:10
feedback

2 Answers

up vote 1 down vote accepted

You can create your own ICacheDependency interface and use a factory class to give you the appropriate object. This way neither your DAL or BL need to reference System.Web namespace. You can put this factory class in a common tier and reference it in the UI layer.

MS Petshop 4 has used something like this, you may want to follow that.

link|improve this answer
really good example in petshop 4! thanks a lot! – michl86 Jul 26 '09 at 10:56
feedback

In this case, you would need to have your DAL return you an object that derives from the CacheDependency abstract class, that would do the same thing as SqlCacheDependency, but optimized for your DAL.

This is, of course, a failure of separation of concerns, but if you need the dependency, it's the best way to go.

link|improve this answer
Do you think it is a "good-style" to use this class in a DAL of a n-tier architekture? Like you, I don't think so. Conclusion: I nice class, but only for small apps. – michl86 Jul 6 '09 at 14:15
Yes, I think it's unfortunate Microsoft didn't define an ICacheDependency interface, which might have been ok to expose from a DAL. I don't like a DAL using System.Web. – John Saunders Jul 6 '09 at 14:46
feedback

Your Answer

 
or
required, but never shown

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