Is first level cache enabled in my Castle ActiveRecord based application?

264 views Asked by At

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?

2

There are 2 answers

2
Krzysztof Kozmic On BEST ANSWER

First level cache can never be disabled. It's always on.

1
DanP 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.