aspose file tools
The moose likes Object Relational Mapping and the fly likes How to get List of objects from Second Level Cache Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Databases » Object Relational Mapping
Reply Bookmark "How to get List of objects from Second Level Cache" Watch "How to get List of objects from Second Level Cache" New topic
Author

How to get List of objects from Second Level Cache

Ravi K Singh
Greenhorn

Joined: Dec 10, 2008
Posts: 3

I have a requirment where I am using ehcache for hibernate second level cache.
It works fine for me as long as i fetch objects by identifier using load() or get().
But I want to fetch a list of objects using some criteria, this time to goes to database.
I want it to fetch data from second level cache every single time, as I have pre loaded my table in cache.

I don't want to use query cache, please advise if I can achieve my target using Second Level cache only.


Regards,
Ravikant Singh
SCJP1.5 | SCWCD5
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16479
    
    2

"Ravi as always", please check your private messages regarding an important administrative matter.

Thank you.
Ravi K Singh
Greenhorn

Joined: Dec 10, 2008
Posts: 3

Anyone please reply how to use createQuery() or createCriteria() on second level cache, i know it works only with load(id) or get(id). but any work arounds for the same.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: How to get List of objects from Second Level Cache
 
Similar Threads
Can I use Hibernate in my RFID based attendance tracking application?
Modify session or re-fetch from database
Using Query cache and second level cache
regarding QueryCache
What does a SessionFactory object cache?