javascript – 使用节点的本机mongoDB驱动程序来查询结果

我在mongoDB集合中有100,000条记录,并尝试使用本机驱动程序在node.js应用程序中检索它们.

我按照MongoDB doc for CursorStream中的示例,但得到错误

RangeError: Maximum call stack size exceeded

在此错误之前,我得到了很多:

(node) warning: Recursive process.nextTick detected. This will break in the next version of node. Please use setImmediate for recursive deferral.

这是我的代码

var query = {...};
var fields = {...};
var options = {
    // "limit": 10
    //"skip": 10,
    //"sort": title
}

var stream = myCollection.find(query, fields, options).stream();
//  stream.pause();
var results = [];
stream.on('data', function (item){
    results.push(item);
    stream.pause();
    // Restart the stream after 1 miliscecond
    setTimeout(function() {
        stream.resume();
    }, 1);
});

stream.on('close'.....

当我没有为’data’事件定义监听器时,也会发生错误.
但是如果在创建后立即暂停流,则不会发生这种情况.

mongod版本是v2.4.1
节点驱动程序版本为1.2.x.

任何帮助/提示将不胜感激.

解决方法:

看起来问题是通过在Cursor Stream中设置批量大小来解决的:

var stream = myCollection.find(query, fields, options).batchSize(10000).stream();

相关文章

MongoTemplate 是Spring Data MongoDB 中的一个核心类,为 S...
笔者今天要分享的是一个项目重构过程中如何将数据库选型由原...
mongodb/mongoTemplate.upsert批量插入更新数据的实现
进入官网下载官网安装点击next勾选同意,点击next点击custom...
头歌 MongoDB实验——数据库基本操作
期末考试复习总结