- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Difference Between First level cache and Second level cache in Hibernate
Hibernate support two type of cache one is first level cache and other is second level cache.
First level cache is a session level cache and it is always associated with session level object. This type of cache is used for minimizing Db interaction by caching the state of the object. That is instead of updating after every modification done in the transaction, it updates the transaction only at the end of the transaction.
Second level cache is session factory level cache and it is available across all sessions.While running the transactions, in between it loads the objects at the Session Factory level, so that those objects will be available to the entire application, not bound to a single user. By default, it is disabled in hibernate.
Sr. No. | Key | First level cache | Second level cache |
---|---|---|---|
1 | Basic | First level cache is a session level cache and it is always associated with session level object | Second level cache is session factory level cache and it is available across all sessions |
2 | Enabled | It is enabled by default. | It is not enabled by default. |
3 | Availability | It is available for a session | It is available across all session. |
4 | Configuration | No Extra configuration required | We have to decide which concurrency strategy to use and also need to configure cache expiration and physical cache attributes. |
- Related Articles
- How does Hibernate Second Level Cache Works?
- Difference Between Cache and Cookies
- Difference between Cache and RAM
- Difference between Cache and Buffer
- Difference between Buffer and Cache
- Difference between Cache Memory and Register
- Difference between Virtual memory and Cache memory
- Difference between Cache Memory and Virtual Memory
- Difference Between Virtual and Cache Memory in OS
- Difference between Cache and Cookies in Computer Network
- Difference between system level exception and Application level exception.
- Difference Between High-Level Language and Low-Level Language
- Difference between Object level lock and Class level lock in Java
- What is Cache Memory? (Functions and Types of Cache Memory)
- Cache Management
