Reputation: 1372
If Hibernate L2 cache vendor supports "transactional" strategy, then does it mean that this cache guarantees the same level of isolation between transactions as specified in Hibernate config?
For example, if cache supports "read-write" strategy then it guarantees REPEATABLE_READ isolation level (and in some cases only READ_COMMITTED level).
Upvotes: 0
Views: 374
Reputation: 45765
If I'm not mistaken, tree-cache has it's own isolation level definition, so it is probably not using the Hibernate configuration.
Upvotes: 1