中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

MongoDB:批量插入(Bulk.insert)與多個插入(insert([...]))

小云
157
2023-09-26 02:42:45
欄目: 云計算

在MongoDB中,有兩種方法可以用來插入多個文檔:批量插入和多個插入。

批量插入使用Bulk.insert方法,它可以一次插入多個文檔。以下是使用批量插入的示例代碼:

const MongoClient = require('mongodb').MongoClient;
MongoClient.connect('mongodb://localhost:27017', function(err, client) {
if (err) throw err;
const db = client.db('mydb');
const collection = db.collection('mycollection');
const documents = [
{ name: 'John', age: 30 },
{ name: 'Jane', age: 25 },
{ name: 'Bob', age: 35 }
];
collection.bulkWrite(documents.map(doc => ({
insertOne: { document: doc }
})), function(err, result) {
if (err) throw err;
console.log('Documents inserted:', result.insertedCount);
client.close();
});
});

多個插入使用insert方法和插入多個文檔的數組。以下是使用多個插入的示例代碼:

const MongoClient = require('mongodb').MongoClient;
MongoClient.connect('mongodb://localhost:27017', function(err, client) {
if (err) throw err;
const db = client.db('mydb');
const collection = db.collection('mycollection');
const documents = [
{ name: 'John', age: 30 },
{ name: 'Jane', age: 25 },
{ name: 'Bob', age: 35 }
];
collection.insert(documents, function(err, result) {
if (err) throw err;
console.log('Documents inserted:', result.insertedCount);
client.close();
});
});

無論是批量插入還是多個插入,都可以用來一次性插入多個文檔到MongoDB中。具體使用哪種方法取決于您的需求和個人偏好。

0
大埔区| 大化| 平遥县| 桐城市| 沙洋县| 环江| 晴隆县| 梁山县| 清河县| 泸西县| 南丰县| 盐山县| 衡阳县| 鲜城| 闵行区| 南召县| 乌鲁木齐县| 鹰潭市| 白沙| 汾西县| 福建省| 英德市| 河北省| 哈密市| 昌平区| 延边| 沁水县| 景东| 平凉市| 大方县| 德阳市| 凤山县| 洛宁县| 佳木斯市| 金昌市| 微博| 建水县| 厦门市| 昌平区| 英山县| 林芝县|