溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

深度理解nodejs[2]-事件循環(huán)

發(fā)布時(shí)間:2020-07-14 19:54:26 來源:網(wǎng)絡(luò) 閱讀:170 作者:jonson_jackson 欄目:開發(fā)技術(shù)

進(jìn)程與線程

我們在電腦中會運(yùn)行多個(gè)程序,每一個(gè)程序中都會有多個(gè)線程。
例如我們運(yùn)行比特幣客戶端的時(shí)候,我們某一個(gè)線程要處理網(wǎng)絡(luò)、某一個(gè)線程要處理挖礦、某一個(gè)線程要處理用戶輸入…
線程的調(diào)度使用了操作系統(tǒng)級別的調(diào)度器來明確了哪一個(gè)線程應(yīng)該被執(zhí)行。線程也有優(yōu)先級之分,例如監(jiān)聽鼠標(biāo)滑動的優(yōu)先級就會很高,因?yàn)槠洳荒艿却L的時(shí)間。

為了在給定的時(shí)間內(nèi)更快更多的處理線程:
1、我們可以通過增加CPU的核心數(shù)量或者是
2、調(diào)度器當(dāng)監(jiān)測到線程中運(yùn)行中斷,如讀取文件網(wǎng)絡(luò)時(shí),及時(shí)切換到其他的線程中執(zhí)行。

事件循環(huán)

nodejs是單線程的事件循環(huán)機(jī)制
偽代碼演示事件循環(huán):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const peningTimers =[];
const pendingOSTasks=[];
cosnt pendingOperations=[];

1、初始化
myfile.runContent()

function shouldContinue(){ //是否繼續(xù)
 1、檢查setTimeOut、setInterval、setImmediate
 2、檢查是否有監(jiān)聽端口等操作系統(tǒng)級別的任務(wù)
 3、檢查是否有文件、網(wǎng)絡(luò)等長期的操作
return peningTimers.length || pendingOSTasks.length || pendingOperations.length;
}

2、事件循環(huán)
while(shouldContinue()){
//1.觀察peningTimers.length,是否調(diào)查setTimeOut、setInterval等函數(shù)
//2、觀察pendingOSTasks.length   pendingOperations.length,并調(diào)用相關(guān)回調(diào)函數(shù)
//3.暫停、一直等到上面的某一個(gè)事件完成
//4、調(diào)用setImmediate等函數(shù)
//5、處理close事件
}

3、退出

nodejs的單線程與多線程

nodejs的單線程,是對于其處理事件循環(huán)來講的,有了事件觸發(fā),就會執(zhí)行相應(yīng)函數(shù)。沒有事件觸發(fā),就會等待。從這個(gè)意義上來說,nodejs是單線程的。
但是在處理具體的任務(wù),函數(shù)的時(shí)候。nodejs確是多線程的。

nodejs的單線程與多線程證明

1
2
3
4
5
6
7
const crypto = require('crypto');

const start = Date.now();

crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('1:',Date.now()-start);
});

測試pbkdf2速度:1: 868

1
2
3
4
5
6
7
8
9
10
11
const crypto = require('crypto');

const start = Date.now();

crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('1:',Date.now()-start);
});

crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('2:',Date.now()-start);
});

測試pbkdf2速度:

1
2
1: 891
2: 893

說明了pbkdf2函數(shù)是多線程來執(zhí)行的。libuv中默認(rèn)有4個(gè)線程,pbkdf2函數(shù)正是借助libuv實(shí)現(xiàn)了多線程。

測試libuv中默認(rèn)有4個(gè)線程

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const crypto = require('crypto');

const start = Date.now();

crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('1:',Date.now()-start);
});
crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('2:',Date.now()-start);
});
crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('3:',Date.now()-start);
});
crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('4:',Date.now()-start);
});
crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('5:',Date.now()-start);
});
1
2
3
4
5
4: 919
1: 922
3: 936
2: 936
5: 1813

注意,明顯第5個(gè)線程時(shí)間增加了一倍,因?yàn)槟J(rèn)libuv中默認(rèn)有4個(gè)線程,第5個(gè)線程陷入了等待。

修改libuv中默認(rèn)默認(rèn)線程

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
process.env.UV_THREADPOOL_SIZE = 5;

const crypto = require('crypto');

const start = Date.now();

crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('1:',Date.now()-start);
});
crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('2:',Date.now()-start);
});
crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('3:',Date.now()-start);
});
crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('4:',Date.now()-start);
});
crypto.pbkdf2('a','b',100000,512,'sha512',()=>{
 console.log('5:',Date.now()-start);
});

測試速度:

1
2
3
4
5
1: 956
5: 963
3: 970
2: 971
4: 974

http庫

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const https = require('https');
const start = Date.now();

function dorequest(){
 https.request('https://www.baidu.com',res=>{
   res.on('data',()=>{});
   res.on('end',()=>{
     console.log(Date.now()-start);
   });
 })
 .end();
}
dorequest();
dorequest();
dorequest();
dorequest();
dorequest();
dorequest();
dorequest();
dorequest();
dorequest();

測試速度:

1
2
3
4
5
6
7
8
9
48
50
52
53
54
55
57
58
62

https網(wǎng)絡(luò)訪問,調(diào)用了操作系統(tǒng)資源,libuv只是起到了代理的作用,所以不收到libuv默認(rèn)4個(gè)線程的限制。

總結(jié)

pbkdf2等函數(shù)是借助libuv實(shí)現(xiàn)多線程的。但是當(dāng)這些函數(shù)執(zhí)行完畢后,會觸發(fā)完成事件.nodejs主線程觸發(fā)事件的處理卻是單線程的。
  • 本文鏈接: https://dreamerjonson.com/2018/11/09/深度理解nodejs-2/

  • 版權(quán)聲明: 本博客所有文章除特別聲明外,均采用 CC BY 4.0 CN協(xié)議 許可協(xié)議。轉(zhuǎn)載請注明出處!

深度理解nodejs[2]-事件循環(huán)

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI