在shell / shell脚本中设置MongoDB的写入问题

时间:2013-09-28 08:37:36

标签: mongodb shell

我正在尝试在 MongoDB 的shell中填充一个集合。据我所知,使用轻松的Write Concern可以加快这个过程。我正在谈论the documentation关于Write Concerns如何工作的问题,但它谈论的是它们如何工作而不是如何设置它们(它说这是在驱动程序中设置的)。我已经看到了不同驱动程序的文档以及它们是如何设置的,但我似乎无法找到{strong> MongoDB 的shell本身如何设置Write Concerns!有谁知道如何从shell中设置它们?

[UPDATE]

为了填充我的数据库,我使用了.js文件并将其发送到mongo命令,如下所示:

mongo ./test.js

以下是test.js文件的内容:

for (var i=0; i<1000000; i++) {
    db.kingdom.insert([
        { "counter" : 0, "last_update" : new Date() }
        , { "counter" : 0, "last_update" : new Date() }
        ...
        , { "counter" : 0, "last_update" : new Date() }
    ]);
}

数据数组用于100个相同结构的对象。

1 个答案:

答案 0 :(得分:1)

你可以specify a write concern for each insert/update operation

  

db.blogs.insert({title:&#39; new blog post&#39;},{writeConcern:{j:true}})