我的问题类似于这个问题:Node Js :is it possible to hit 1000 http get request to some api from a node js server但他们的油门解决方案对我不起作用。
我正在调用我们在Google App Engine上托管的api /网站,以触发更新特定产品页面的内存缓存的任务。从updateCache
调用此函数async.eachSeries
。代码很简单:(这是一个消毒版本)
function updateCache(object_name, callback) {
var options = {
host : 'www.example.com',
path : '/update-cache/' + object_name,
method : 'GET',
agent : false,
};
var req = https.request(options, function(res) {
res.on('data', function() {
if (res.statusCode !== 200) {
console.log('successful');
}
});
res.on('end', function() {
console.log('end');
callback();
});
});
req.on('error', function(e) {
console.log('failed');
console.error(e.stack);
callback();
});
req.end();
}
它在我的Mac机器上运行完美,但我需要使用Windows 7在Windows PC上运行脚本,这是否会出现此错误:
events.js:141
throw er; // Unhandled 'error' event
^
Error: read ECONNRESET
at exports._errnoException (util.js:870:11)
at TCP.onread (net.js:552:26)
答案 0 :(得分:5)
我跟着这个solution看起来像这样:
var req = https.request(options, function(res) {
res.on('data', function() {
if (res.statusCode !== 200) {
// HANDLE
}
});
res.on('end', function() {
if (res.statusCode !== 200 && app.retry_count < 10) {
app.retry_count += 1;
retriggerFunction(param, callback);
} else {
app.retry_count = 0;
return callback();
}
});
});
req.on('error', function(e) {
app.retry_count += 1;
retriggerFunction(param, callback);
});
req.on('timeout', function(e) {
app.retry_count += 1;
retriggerFunction(param, callback);
req.abort();
});
req.on('uncaughtException', function(e) {
app.retry_count += 1;
retriggerFunction(param, callback);
req.abort();
});
retriggerFunction
只是我把它包裹起来的功能。它可能不是&#34;正确&#34;但它目前正在为我工作。如果有人对此有所改进,请告诉我