私はグーグルや他のすべての人でしたが、答えは見つかりませんでした。質問は:
こんにちは、MongoDBにMongoDBでバッチ挿入を行うにはどうすればよいですか?
Ruby mongoドライバーの挿入メソッドを使用して、ハッシュのバッチ配列を挿入できます。任意のMongoidクラスから、コレクションに呼び出してアクセスできます。
batch = [{:name => "mongodb"}, {:name => "mongoid"}]
Article.collection.insert(batch)
ハッシュの代わりにMongoid文書(モデル)をバッチ挿入する場合は、配列に配置する前にモデルのas_documentメソッドを呼び出します。
@page_views << page_view.as_document
...
PageView.collection.insert(@page_views)
あなたはこれを使うことができます:
books = [{:name => "Harry Potter"}, {:name => "Night"}]
Book.collection.insert_many(books)
そして、私は「挿入」が私のために機能しないことに気づきました(Monogoid 5.1.3):
NoMethodError: undefined method `insert' for # <Mongo::Collection:0x007fbdbc9b1cd0>
Did you mean? insert_one
insert_many
inspect
これは、「lib/mongo/collection.rb」のソースコードです。
# Insert the provided documents into the collection.
#
# @example Insert documents into the collection.
# collection.insert_many([{ name: 'test' }])
#
# @param [ Array<Hash> ] documents The documents to insert.
# @param [ Hash ] options The insert options.
#
# @return [ Result ] The database response wrapper.
#
# @since 2.0.0
def insert_many(documents, options = {})
inserts = documents.map{ |doc| { :insert_one => doc }}
bulk_write(inserts, options)
end
モンゴイドのModel.create
メソッドは配列を受け入れてドキュメントを作成できます。
Mongoidのドキュメントから:
Person.create([
{ first_name: "Heinrich", last_name: "Heine" },
{ first_name: "Willy", last_name: "Brandt" }
])
https://docs.mongodb.org/ecosystem/tutorial/mongoid-persistence/