Multiple choice technology programming languages

Hibernate.cache.use_query_cache setting true enable cache regions ?

  1. StandardQueryCache and UpdateTimestampsCache

  2. StandardQueryCache

  3. QueryCache

  4. QueryCache and TimestampsCache

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

When hibernate.cache.use_query_cache is set to true, Hibernate enables two cache regions: StandardQueryCache (stores query results) and UpdateTimestampsCache (tracks table modification timestamps). UpdateTimestampsCache is crucial for validating cached query results. Options B and C miss the UpdateTimestampsCache region.