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?
Is first level cache enabled in my Castle ActiveRecord based application?
251 views Asked by Afshar At
2
There are 2 answers
1
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.
First level cache can never be disabled. It's always on.