Is first level cache enabled in my Castle ActiveRecord based application?
I have a simple level ASP.NET web application based on Castle ActiveRecord. How can I determine if 开发者_开发百科first level cache is enabled within it or not?
First level cache can never be disabled. It's always on.
Are you sure you're not thinking of the Second Level Cache?
The first level cache is essentially an identity map and as such, is always enabled.
精彩评论