Yury Litvinov
Yury Litvinov

Reputation: 1372

Transactional strategy for Hibernate L2 Cache

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

Answers (1)

Eran Medan
Eran Medan

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

Related Questions