InterviewSolution
Saved Bookmarks
| 1. |
What is second level cache in hibernate? |
|
Answer» Second level cache is an optional cache and first-level cache will always be consulted before any attempt is made to locate an object in the second-level cache. The second-level cache can be configured on a per-class and per-collection basis and mainly responsible for caching objects across sessions. |
|