博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
node.js中长连接遇到的坑
阅读量:6038 次
发布时间:2019-06-20

本文共 2371 字,大约阅读时间需要 7 分钟。

  hot3.png

近日尝试使用node.js的长连接去模拟微信的扫码登录,但是每次超时重连都遇到“socket hang up”的错误,警告一番查阅资料后,终于发现是node.js的连接池惹的祸。

模拟微信登录的核心代码:

function doRequest(resolve,reject){        console.log(`try_time:${retry_time}`);        var login_url = 'login.weixin.qq.com';        var code;        var params = {            'tip': tip,            'uuid': uuid,            '_': Math.round(new Date().getTime()/1000),        };        var paramsString = convertArrayToString(params);        var options = {            rejectUnauthorized:false,            agent:false,            hostname: login_url,            path: '/cgi-bin/mmwebwx-bin/login' + paramsString,            port: 443,            method: 'GET',            headers: {                'User-Agent': 'Mozilla/5.0 (X11; Linux i686; U;) Gecko/20070322 Kazehakase/0.4.5'            }        };        var req = https.request(options, (res) => {            res.setEncoding('utf8');            res.on('data', (chunk) => {                var pattern_for_code = /window.code=(\d+);/;                pattern_for_code.test(chunk);                code = RegExp.$1;                var pattern_for_redirect_url = /window.redirect_uri=(\S+?);/;                pattern_for_redirect_url.test(chunk);                redirect_uri = RegExp.$1;                console.log(`redirect_uri is:${redirect_uri}`);                console.log(`code inside:${code}`);                 });            res.on('end', () => {                console.log(code);                if(code == 201){//scand                    tip = 0;                    console.log("scand");                    doRequest();                }else if(code == 200){//success                    console.log("success");                    console.log(redirect_uri);                    resolve();                }else if(code == 408 && retry_time > 0){//timeout                    retry_time--;                    setTimeout(doRequest,1000);                }else{                    reject(408);                }            })        });        req.on('error',(err)=>{            console.log(err);        })                req.end();}

上述的代码是一个递归的调用,关键在于agent:false这个选项。node.js在C10K问题的背景下被创造处理,为了网络连接的性能,node.js默认使用连接池,也就是说在上述的代码里面,我们在进入下一级递归的时候,原来调用函数内部的网络连接没有被关闭,

我们必须手动的把网络连接从“网络连接池”中撤出来,让它在进入下一级递归的时候,原来的网络连接就被关闭掉,而agent设置为false,就是把当前的连接从“连接池”中撤出来。

参考资料:

  1. 《深入浅出node.js》 朴灵

转载于:https://my.oschina.net/cloes/blog/750320

你可能感兴趣的文章
Flink - InstanceManager
查看>>
这个功能下班之前必须做好,So?
查看>>
sublime text 3 快捷键大全以及配置编译环境
查看>>
Python Queue模块详解
查看>>
电脑如何下棋?深入了解人工智能
查看>>
Android Binder学习趣事
查看>>
Linux下快速重置MySQL用户(root)密码方法
查看>>
把路由器当做交换机使用
查看>>
Gearman安装
查看>>
反射给javabean赋值
查看>>
图形验证码one
查看>>
使用mogrify 转化图片格式为RGB
查看>>
Irrlicht(鬼火引擎)中多设备的支持
查看>>
近期对semisync的一些优化
查看>>
shell脚本进行数据库操作
查看>>
Android2.2 API 中文文档系列(5) —— View
查看>>
RSYSLOG 参数配置错误导致磁盘爆满
查看>>
doT JS
查看>>
OC之description
查看>>
MAC Brew安装MNMP
查看>>