Mongoose (mongodb) batch insert?

后端 未结 8 1993
灰色年华
灰色年华 2020-11-27 10:15

Does Mongoose v3.6+ support batch inserts now? I\'ve searched for a few minutes but anything matching this query is a couple of years old and the answer was

8条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-27 10:47

    Sharing working and relevant code from our project:

    //documentsArray is the list of sampleCollection objects
    sampleCollection.insertMany(documentsArray)  
        .then((res) => {
            console.log("insert sampleCollection result ", res);
        })
        .catch(err => {
            console.log("bulk insert sampleCollection error ", err);
        });
    

提交回复
热议问题