Two queries :
1. So, knowing this what is the suggested idiom for working with lazy second-level cached objects?
For example, using the Open Session In View pattern once the request, and thus session, has completed you may now have entities in the second-level cached which are proxied.
On a subsequent request, if you'd cached those entities on the client side, you'd have to manually re-associate the object via Session.Lock() to the current session in order to properly lazy load it from the second-level cache.
Does that make sense? Assuming the above is correct, which is fine, can anyone suggest a cleaner approach? I mean is this done typically through some interceptor or home-grown aspect?
2. Given a parent object that has lazy collections in the second-level cache, is it suffice to lock the parent only?
Cheers,
Roll
Inquiring minds want to know! :D
|