in Hibernate by

Explain Query Cache 

1 Answer

0 votes
by

The Query Cache is a second-level cache that stores the results of a query so that they can be reused later. It improves performance by avoiding multiple times hitting the database for the same Query. 

...