vote up 1 vote down star

Hello, I am new to rails and would appreciate some help optimizing my database usage.

Is there a way to load two models associated with each other with one DB query?

I have two models Person and Image:

class Person < ActiveRecord::Base
  has_many :images
end

class Image < ActiveRecord::Base
  belongs_to :person
end

I would like to load a set of people and their associated images with a single trip to the DB using a join command. For instance, in SQL, I can load all the data I need with the following query:

select * from people join images on people.id = images.person_id where people.id in (2, 3) order by timestamp;

So I was hoping that this rails snippet would do what I need:

>> people_and_images = Person.find(:all, :conditions => ["people.id in (?)", "2, 3"], :joins => :images, :order => :timestamp)

This code executes the SQL statement I am expecting and loads the instances of Person I need. However, I see that accessing a a Person's images leads to an additional SQL query.

>> people_and_images[0].images


Image Load (0.004889)   SELECT * FROM `images` WHERE (`images`.person_id = 2)

Using the :include option in the call to find() does load both models, however it will cost me an additional SELECT by executing it along with the JOIN.

I would like to do in Rails what I can do in SQL which is to grab all the data I need with one query.

Any help would be greatly appreciated. Thanks!

flag

2 Answers

vote up 0 vote down

Hi Peter,

You can use :include for eager loading of associations and indeed it does call exactly 2 queries instead of one as with the case of :joins; the first query is to load the primary model and the second is to load the associated models. This is especially helpful in solving the infamous N+1 query problem, which you will face if you doesn't use :include, and :joins doesn't eager-load the associations.

the difference between using :joins and :include is 1 query more for :include, but the difference of not using :include will be a whole lot more.

you can check it up here: http://guides.rubyonrails.org/active_record_querying.html#eager-loading-associations

link|flag
Hi Staelen, I think my post is confusing people. My question really is: if I can grab all the data I need with one SQL join query, why can't I do the same in Rails? I am not really asking how to populate the 2 models. Instead, I'm asking why can't I populate the 2 models with the one call that is giving me all the data I need? In the example above, the find() command with the :joins option translates to a sql join query that actually fetches all the data needed to populate both Person and Image models. However, rails ends up only populating the Person model, which is inefficient. – peter Aug 24 at 18:54
i think this blog sort of explain a whole lot more and give you a better idea what's going on: akitaonrails.com/2008/5/… hope it helps =) – Staelen Aug 25 at 1:38
check out Optimized Eager Loading section =) – Staelen Aug 25 at 1:39
vote up 2 vote down

You want to use :include like

Person.find(:all, :conditions => ["people.id in (?)", "2, 3"], :include => :images, :order => :timestamp)

Check out the find documentation for more details

link|flag
Hi Rob, I may not understand :include very well, but as noted in the post, I see via Query Analyzer that :include still causes an additional SELECT to be executed. So in raw SQL I execute one query. In Rails, it appears I need two. – peter Aug 23 at 20:44
No, the include should do it in one query. Probably this is a better link to explain how that is done. api.rubyonrails.org/classes/ActiveRecord/… Are you sure that it is the second query isn't coming from something else? – Rob Di Marco Aug 23 at 21:21
Perhaps I am being mislead by my logs. I am using the query analyzer plugin (agilewebdevelopment.com/plugins/query_analyzer/…) to see the what sql statements are executed on my database. This call: people_and_images = Person.find(:all, :conditions => ["people.id in (?)", "2, 3"], :joins => :images, :order => :timestamp, :include => :images) Leads to two select statements being executed (see next comment): – peter Aug 24 at 4:00
Person Load (0.005105) SELECT people.* FROM people INNER JOIN images ON images.person_id = people.id WHERE (people.id in ('2, 3')) ORDER BY timestamp Image Load (0.002779) SELECT images.* FROM images WHERE (images.person_id IN (2)) – peter Aug 24 at 4:01

Your Answer

Get an OpenID
or

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