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?
|
|
|
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.
|
|||
|
|
|
If you want to batch insert Mongoid documents (models) instead of hashes, call your model's as_document method before placing it into array:
...
|
|||||||||||
|