我在嘗試對1000萬個值的數組進行排序。從發現新技術Microsoft - Napa.js允許使用多線程與Node.js.Node.js與Napajs並行執行任務
在那裏,我們使用下面的代碼:
const napa = require('napajs')
const zone = napa.zone.create('zone', { workers: 4 });
zone.execute((...args) => {
// here I can take anything I want to execute in a native thread
// but it is also possible to implement shared memory for all
// threads, but I can't find out how
}, [args])
幫助我明白了,什麼分配。什麼是處理程序以及如何使用TransferContext如果它需要執行此任務。
Ant至少如何使用所有這些知識爲我的線程創建共享內存?
謝謝你的回答!像你的[路線圖](https://github.com/Microsoft/napajs/wiki/roadmap)。期待這些事情都完成了 –