node.js - nodejs(分别使用express,restify,koa) http请求在延时返回时,接口函数会被重复执行,如何避免?
PHPz
PHPz 2017-04-17 15:53:04
0
1
745

项目运行过程中发现当大并发,cpu处理能力不足时,请求会堵塞,当超过1~2分钟之间时,实测分别使用koa,express,restify都会重复执行接口函数,导致数据重复。

express的connect-timeout能解决超时响应的问题,但是依然会继续重复执行函数,所以超时解决方法不可取。

koa的测试代码如下:

app.use(function *(){
console.log("come in");
var text1 = yield new Promise(function(resolve){

    setTimeout(function(){
        resolve("I am text1");
    }, 120000);
});

this.body = "text1 ";
});

有类似困惑的朋友可以一起沟通探讨。

PHPz
PHPz

学习是最好的投资!

répondre à tous(1)
Peter_Zhu

node每两分钟会自动断开超时的请求,浏览器会重新请求。

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal