我使用node的异步模块连接50个mongodb数据库,用数据填充它们。
我在我的快速应用程序中使用async.eachSeries。
然而执行总是不会超过120秒。
我遇到了一些链接,说app.timeout = x,其中x是我们希望脚本执行的毫秒数。但是这对我不起作用。
答案 0 :(得分:0)
我找到了针对路由器特定功能的节点/快速应用的答案
res.writeHead(200, { 'Content-Type': 'application/json' });
res.connection.setTimeout(0); // this will prevent the timeout
以上代码行可防止请求超时。
由于