InterviewSolution
Saved Bookmarks
| 1. |
What is hibernate caching? |
|
Answer» Hibernate caching is the strategy for improving the application performance by pooling objects in the cache so that the queries are EXECUTED faster. Hibernate caching is particularly useful when fetching the same data that is executed multiple times. Rather than hitting the database, we can just access the data from the cache. This results in REDUCED throughput time of the application. Types of Hibernate CachingFirst Level Cache:
Second Level Cache:
|
|