我正在尝试在 MongoDB 中进行批量操作,但不断收到以下错误:
TypeError: db.items.initializeUnorderedBulkOp is not a function (shell):1
... 在 shell 中执行这一行时:
var bulk = db.items.initializeUnorderedBulkOp();
我在这里想念什么?
PS:我使用的 mongo 服务器托管在 MongoLab 上,db.version()
报告版本2.6.5
。