I'm using Mongoid to work with MongoDB in Rails.

What I'm looking for is something like active record include. Currently I failed to find such method in mongoid orm.

Anybody know how to solve this problem in mongoid or perhaps in mongomapper, which is known as another good alternative.

link|improve this question

feedback

6 Answers

up vote 7 down vote accepted

Based on the documentation of both drivers, neither of them supports what you're looking for. Probably because it wouldn't solve anything.

The :include functionality of ActiveRecord solves the N+1 problem for SQL databases. By telling ActiveRecord which related tables to include, it can build a single SQL query, by using JOIN statements. This will result in a single database call, regardless of the amount of tables you want to query.

MongoDB only allows you to query a single collection at a time. It doesn't support anything like a JOIN. So even if you could tell Mongoid which other collections it has to include, it would still have to perform a separate query for each additional collection.

link|improve this answer
The include option in rails makes a sinle query for each collection, which isn't a problem. The problem comes when you want to display 20 posts on a page each with their one set of comments. Without include, you'd have to make 20 queries on the comments collection. – tybro0103 Sep 2 '11 at 18:45
feedback

ActiveRecord :include typically doesn't do a full join to populate Ruby objects. It does two calls. First to get the parent object (say a Post) then a second call to pull the related objects (comments that belong to the Post).

Mongoid works essentially the same way for referenced associations.

def Post
    references_many :comments
end

def Comment
    referenced_in :post
end

In the controller you get the post:

@post = Post.find(params[:id])

In your view you iterate over the comments:

<%- @post.comments.each do |comment| -%>
    VIEW CODE
<%- end -%>

Mongoid will find the post in the collection. When you hit the comments iterator it does a single query to get the comments. Mongoid wraps the query in a cursor so it is a true iterator and doesn't overload the memory.

Mongoid lazy loads all queries to allow this behavior by default. The :include tag is unnecessary.

link|improve this answer
feedback

Now that some time has passed, Mongoid has added support for this: http://mongoid.org/docs/querying/criteria.html#includes

Looks like the link that @amrnt posted was merged into mongoid.

link|improve this answer
feedback

This could help https://github.com/flyerhzm/mongoid-eager-loading

link|improve this answer
feedback

You need update your schema to avoid this N+1 there are no solution in MongoDB to do some jointure.

link|improve this answer
feedback

Embed the detail records/documents in the master record/document.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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