您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么使用JavaScript異步操作中串行和并行”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么使用JavaScript異步操作中串行和并行”吧!
本文寫一下js
中es5
和es6
針對異步函數,串行執行和并行執行的方案。已經串行和并行結合使用的例子。
在es6出來之前,社區nodejs
中針對回調地獄,已經有了promise
方案。假如多個異步函數,執行循序怎么安排,如何才能更快的執行完所有異步函數,再執行下一步呢?這里就出現了js的串行執行和并行執行問題。
var items = [ 1, 2, 3, 4, 5, 6 ]; var results = []; function async(arg, callback) { console.log('參數為 ' + arg +' , 1秒后返回結果'); setTimeout(function () { callback(arg * 2); }, 1000); } function final(value) { console.log('完成: ', value); } function series(item) { if(item) { async( item, function(result) { results.push(result); return series(items.shift());// 遞歸執行完所有的數據 }); } else { return final(results[results.length - 1]); } } series(items.shift());
上面函數是一個一個執行的,上一個執行結束再執行下一個,類似es6
(es5之后統稱es6)中 async 和await,那有沒有類似promise.all
這種,所有的并行執行的呢?
可以如下寫:
var items = [ 1, 2, 3, 4, 5, 6 ]; var results = []; function async(arg, callback) { console.log('參數為 ' + arg +' , 1秒后返回結果'); setTimeout(function () { callback(arg * 2); }, 1000); } function final(value) { console.log('完成: ', value); } items.forEach(function(item) {// 循環完成 async(item, function(result){ results.push(result); if(results.length === items.length) {// 判斷執行完畢的個數是否等于要執行函數的個數 final(results[results.length - 1]); } }) });
假如并行執行很多條異步(幾百條)數據,每個異步數據中有很多的(https)請求數據,勢必造成tcp 連接數不足,或者堆積了無數調用棧導致內存溢出。所以并行執行不易太多數據,因此,出現了并行和串行結合的方式。
代碼可以如下書寫:
var items = [ 1, 2, 3, 4, 5, 6 ]; var results = []; var running = 0; var limit = 2; function async(arg, callback) { console.log('參數為 ' + arg +' , 1秒后返回結果'); setTimeout(function () { callback(arg * 2); }, 1000); } function final(value) { console.log('完成: ', value); } function launcher() { while(running < limit && items.length > 0) { var item = items.shift(); async(item, function(result) { results.push(result); running--; if(items.length > 0) { launcher(); } else if(running == 0) { final(results); } }); running++; } } launcher();
es6
天然自帶串行和并行的執行方式,例如串行可以用async
和await
(前文已經講解),并行可以用promise.all等等。那么針對串行和并行結合,限制promise all
并發數量,社區也有一些方案,例如
tiny-async-pool、es6-promise-pool、p-limit
簡單封裝一個promise all
并發數限制解決方案函數
function PromiseLimit(funcArray, limit = 5) { // 并發執行5條數據 let i = 0; const result = []; const executing = []; const queue = function() { if (i === funcArray.length) return Promise.all(executing); const p = funcArray[i++](); result.push(p); const e = p.then(() => executing.splice(executing.indexOf(e), 1)); executing.push(e); if (executing.length >= limit) { return Promise.race(executing).then( () => queue(), e => Promise.reject(e) ); } return Promise.resolve().then(() => queue()); }; return queue().then(() => Promise.all(result)); }
使用:
// 測試代碼 const result = []; for (let index = 0; index < 10; index++) { result.push(function() { return new Promise((resolve, reject) => { console.log("開始" + index, new Date().toLocaleString()); setTimeout(() => { resolve(index); console.log("結束" + index, new Date().toLocaleString()); }, parseInt(Math.random() * 10000)); }); }); } PromiseLimit(result).then(data => { console.log(data); });
修改測試代碼,新增隨機失敗邏輯
// 修改測試代碼 隨機失敗或者成功 const result = []; for (let index = 0; index < 10; index++) { result.push(function() { return new Promise((resolve, reject) => { console.log("開始" + index, new Date().toLocaleString()); setTimeout(() => { if (Math.random() > 0.5) { resolve(index); } else { reject(index); } console.log("結束" + index, new Date().toLocaleString()); }, parseInt(Math.random() * 1000)); }); }); } PromiseLimit(result).then( data => { console.log("成功", data); }, data => { console.log("失敗", data); } );
async function PromiseAll(promises,batchSize=10) { const result = []; while(promises.length > 0) { const data = await Promise.all(promises.splice(0,batchSize)); result.push(...data); } return result; }
這么寫有2個問題:
1、在調用Promise.all
前就已經創建好了promises
,實際上promise
已經執行了
2、你這個實現必須等前面batchSize個promise resolve
,才能跑下一批的batchSize
個,也就是promise all
全部成功才可以。
改進如下:
async function asyncPool(array,poolLimit,iteratorFn) { const ret = []; const executing = []; for (const item of array) { const p = Promise.resolve().then(() => iteratorFn(item, array)); ret.push(p); if (poolLimit <= array.length) { const e = p.then(() => executing.splice(executing.indexOf(e), 1)); executing.push(e); if (executing.length >= poolLimit) { await Promise.race(executing); } } } return Promise.all(ret); }
使用:
const timeout = i => new Promise(resolve => setTimeout(() => resolve(i), i)); return asyncPool( [1000, 5000, 3000, 2000], 2,timeout).then(results => { ... });
感謝各位的閱讀,以上就是“怎么使用JavaScript異步操作中串行和并行”的內容了,經過本文的學習后,相信大家對怎么使用JavaScript異步操作中串行和并行這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。