1

要使用 MongoDB 中的空间函数,我需要更新数据集。当我运行以下代码超过 2000 万个文档时,8 小时后仍未完成。

有没有更快的方法来做到这一点?

db.eval(function() { 
db.test.find({}).forEach(function(e) {
    e.geometry = {"type": "Point", "coordinates": [e.SA_X_COORD, e.SA_Y_COORD]}
    db.test.save(e);
});
},
{ nolock: true });
4

1 回答 1

1

能够通过改变来加快速度

db.test.save(e);
to 
db.test.update(e);
于 2013-10-24T02:23:11.097 回答