tags:

views:

55

answers:

1

I'm currently looking how to work with caching on my web application I'm buildning. I have an ormapper (nhibernate, not using second level cache), and I have built a cache frame, built on System.Web cache, that I pass in the objects.

My question is. Are there open source cache frameworks someone can recomend? Is their anything to gain form using the built in cache in the ormapper (like the second level cache in nhibernate)?

What is a good practice here?

+1  A: 

If NHibernate has caching abilities than it would probably be a good idea to use this

Quagmire
Is it? I feel like I lack control over how the cache is used. It feels like I need NHProf to check that I'm not doing it wrong.
Emil C
What I'm say is what't the argument for going that way? Why is it a good idea?
Emil C
Well, it gives you a complete integrated solution in one package. NHibernate is used by a lot of projects and there is lots of support available for it.Disclaimer: I haven't used NHibernate myself (Still hoping to find the time to learn it) :-)
Quagmire