Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

  1. Is query caching a first level cache or second level cache in hibernate?
  2. Where is Query Cache is maintained , at Session level or SessionFactory level?
  3. 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?

share|improve this question
1  
There is already this question: stackoverflow.com/questions/7058843/… – ctapobep Sep 18 '12 at 5:56
possible duplicate of What is second level cache in hibernate? – Abhinav Sarkar Sep 18 '12 at 6:34

1 Answer

I think this article can answer your third question.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.