-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 
Author Message
 Post subject: Feature request: load(Class, Serializable[])
PostPosted: Tue Feb 10, 2004 10:05 am 
Beginner
Beginner

Joined: Wed Nov 19, 2003 10:29 pm
Posts: 27
Or load(Class, List), for that matter.

Obviously this is possible using find(), but having a load() method that handled this simplified special case would probably be more efficient since it would be able to look in the session cache for already loaded objects.

I also don't know of a way of having an select .. from .. where id in (...) construct in HSQL without either having to resort to string-concat-ing or programmatic query construction.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 10, 2004 10:08 am 
Hibernate Team
Hibernate Team

Joined: Tue Sep 09, 2003 2:10 pm
Posts: 3246
Location: Passau, Germany
Code:
session.createQuery("from X x where x.id in :ids").setParameterList("ids", idList).list();


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 10, 2004 10:12 am 
Senior
Senior

Joined: Tue Oct 21, 2003 8:15 am
Posts: 186
Yes, yes, I've been looking for this as well.

Code:
List myList = session.load(X.class);


Very handy, indeed.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 10, 2004 10:13 am 
Beginner
Beginner

Joined: Wed Nov 19, 2003 10:29 pm
Posts: 27
Didn't know you could do that in HSQL. Now I know.

My original point still stands, though. The query system can't take advantage of the session cache. This would be especially useful if you knew that most or all of the items you're looking for are in the cache.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Feb 10, 2004 9:22 pm 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 12:50 pm
Posts: 5130
Location: Melbourne, Australia
Well, I've considered this, its not such a bad idea, but it would only improve performance if it was very likely that ALL of the ids were in the session cache (otherwise you have to hit DB anyway).

Its pretty marginal.....


Submit a feature request and see if it gets any votes, if you like.


Top
 Profile  
 
 Post subject: New issue posted for voting
PostPosted: Wed Feb 11, 2004 5:19 am 
Beginner
Beginner

Joined: Wed Nov 19, 2003 10:29 pm
Posts: 27
If you'd like to vote on this, the new issue is posted here.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Feb 11, 2004 5:28 am 
Senior
Senior

Joined: Tue Oct 21, 2003 8:15 am
Posts: 186
You should rephrase the issue. It starts with

"This seems like a natural extension to the current load() methods. "

_This_ what???

Users who have not followed this thread will not have a clue on what they are voting about.

Please include a sample.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Feb 11, 2004 5:34 am 
Beginner
Beginner

Joined: Wed Nov 19, 2003 10:29 pm
Posts: 27
Well, the contents of the issue topic name is 'THIS'.

I'll add another comment to make it more clear.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 8 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.