Secondary Caches
Last updated
Last updated
Hibernate's secondary cache is a powerful tool that can greatly improve the performance of your application. By storing frequently accessed data in memory, the secondary cache can reduce the number of database queries that need to be made, resulting in faster response times and more efficient use of system resources. Whether you're working on a small project or a large enterprise application, the secondary cache is an essential part of any Hibernate-based system. So if you want to get the most out of your Hibernate application, take advantage of this powerful caching feature!
Please see the caching section for all the wonderful caching strategies you can do with Hibernate.
A secondary cache provider is a class that manages a level of caching secondary to Hibernate's main caching context - the Hibernate session. A secondary cache enables longer-running cache contexts, more fine-grained control over cache busting, and other performance-related benefits.
The only setting necessary to enable secondary caching is the secondaryCacheEnabled
setting:
To configure the caching, specify the path to an XML cache configuration file in cacheConfig
:
This ehcache.xml
cache configuration then should look something like this:
While there is a cacheProvider
setting, only EHCache (currently) is supported as a secondary cache provider.
Thus, any usage of cacheProvider
other than "ehcache"
will be ignored.
Savepoints are not currently supported on ORM transactions.
Looking for alternate cache providers? Contact our Support team to consider sponsoring this feature.