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

I googled and all others, but I didn't find the answer. The question is:

Hi, how can I do batch insert with Mongoid to MongoDB?

share|improve this question

2 Answers

up vote 29 down vote accepted

You can insert a batch array of hashes using the ruby mongo driver's insert method. From any Mongoid class, you can call collection to access it.

batch = [{:name => "mongodb"}, {:name => "mongoid"}]  
Article.collection.insert(batch)
share|improve this answer

If you want to batch insert Mongoid documents (models) instead of hashes, call your model's as_document method before placing it into array:

@page_views << page_view.as_document

...

PageView.collection.insert(@page_views)
share|improve this answer
2  
Does skip validation – Viren Apr 30 '12 at 6:11
1  
I get this error undefined method `as_document' for #<Array:0x10a40f870> any solution ? – Abhay Kumar Jul 3 '12 at 10:24
@AbhayKumar as_document doesn't work against an array, only single objects. If you already have an array of objects, you can call it like so: PageView.collection.insert(@page_views.map(&:as_document)) which will map all of the objects to documents prior to insertion. – Jay Apr 19 at 6:59

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.