Hi there, I have a problem getting second level caching working together with
query caching. I am using a second level cache with clustered invalidation (OSCache). The problem I am experiencing are manifested as follows:
1 A node believes a entry in the StandardQueryCachis up to date as long as the UpdateTimestampsCache says it is so.
2 UpdateTimestampsCache says a entry isUpToDate if there is no latest modification.
If a node A has never experienced a update it will not contain an entry in the UpdateTimestampsCache.
If a node B deletes an entity, node A will still trust it's QueryCache since no record of any update will be found in the TimestampCache. This will result in the node wrongly believing that the entity exists. The entity does not how ever and we get a ugly exception.
right? Chapter 20 of the online manual says that this should work. What am I missing?
/Konstantin
|