Multiple choice technology programming languages

hibernate.cache.use_query_cache setting true enable cache regions ?

  1. a) StandardQueryCache and UpdateTimestampsCache

  2. b) StandardQueryCache

  3. c) QueryCache

  4. d) 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 (for caching query results) and UpdateTimestampsCache (for tracking when tables were last modified). This allows efficient query result caching while maintaining data consistency.