I have some confusion over how second level caching works in hibernate and I seek help from you guys to clear this confusion. Following are my questions
- Is query caching a first level cache or second level cache in hibernate?
- Where is Query Cache is maintained , at Session level or SessionFactory level?
- Let's say I have enabled the second level cache and Query cache in my application. Now, suppose I run a HQL query in a session and close that particular session. Now, when I open another session and execute the same query, will I get cached results or the hibernate will hit the database?
For example, see the following code :
for (int i = 0; i < 3; i++) {
session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
session.setCacheMode(CacheMode.NORMAL);
long start = System.currentTimeMillis();
Query query = session.createQuery("from Product ");
query.setCacheable(true);
query.list();
long end = System.currentTimeMillis();
System.out.println("Time Taken = " + (end - start));
tx.commit();
session.close();
}
In the above code will the result be read from cache or it will be a DB hit everytime?