nodejs多线程,fork和Worker

一、前言

javascript是单线程执行的,如果想要多线程执行,那么相当于再运行一个node,其实不该理解成多线程,更像是多进程。

二、Worker('worker_threads'模块)

worker有点类似exec,直接再cmd执行node命令,不同的是两个node进程之间可以通过发送消息的方式进行通信。

例如(例子为ts):

主进程中:

javascript 复制代码
// 当前为test2.ts 文件
import {Worker, isMainThread} from 'worker_threads'

async function  runWork():Promise<void>{
    // 当前是主线程
    if(isMainThread){
          //const log= execSync("ts-node ./test.ts",{cwd:__dirname}).toString()
        // 运行子线程--相当于输入node-ts  ./test.ts
        const woker =new Worker("./test.ts",{workerData:"hello"}) 
        // 监听事件
        // message 为固定事件 
        // error 事件 子线程的错误信息
        // exit 事件 子线程执行完毕 时候的事件
        woker.on("message",(data:string)=>{
             console.log("主线程接收数据:"+data);
       })
    }
    
    console.log("主线程");
    
}
runWork()

子进程中:

javascript 复制代码
// test.ts文件 注意:子进程不支持ES6语法

const worker_threads=require('worker_threads') 
console.log("线程2,接收数据"+worker_threads.workerData);
// 向主进程发送数据
worker_threads.parentPort.postMessage("hello2")

worker 只能在主进程中创建,不能在子进程中再创建

三、fork(child_process模块)

fork比worker出现得早,于worker相比,它可以在子线程再创建子线程,但是worker更轻量.

例子(ts):

主线程:

javascript 复制代码
// 当前为 test3.ts文件 主进程

// 引入模块
const { fork } = require('child_process');

// 创建子进程
const child = fork('test33.ts');

// 监听子进程发送的消息
child.on('message', (data:string) => {
   
        console.log("接收的消息:"+data);
    

});

// 向子进程发送消息
child.send('Hello from parent process!');

子进程:

javascript 复制代码
// 当前为 test33.ts 文件 子进程

const child_process=require("child_process")
// 向父进程发送消息
if(typeof process.send!='undefined'){
    process.send('你们好主进程');
}

总结:nodejs的多线程不像java那样,它更像是运行了多个node

相关推荐
island13142 天前
【Java多线程】:理解线程创建、特性及后台进程
java·开发语言·多线程
白狐欧莱雅4 天前
使用Python多线程抓取某图网数据并下载图片
经验分享·爬虫·python·自动化·多线程·图片·drissonpage
Winston Wood4 天前
Android中View.post的用法
android·多线程
hong_zc5 天前
Java 多线程(八)—— 锁策略,synchronized 的优化,JVM 与编译器的锁优化,ReentrantLock,CAS
java·面试·多线程
Themberfue7 天前
Java多线程详解③(全程干货!!!)Thread Runnable
java·开发语言·学习·线程·多线程
亿牛云爬虫专家8 天前
如何用Python同时抓取多个网页:深入ThreadPoolExecutor
python·多线程·爬虫代理·threadpool·代理ip·抓取·足球
铭正8 天前
C++多线程应用
c++·多线程
concisedistinct8 天前
Python的协程与传统的线程相比,是否能更有效地利用计算资源?在多大程度上,这种效率是可测量的?如何量化Python协程的优势|协程|线程|性能优化
python·性能优化·多线程
Winston Wood11 天前
十分钟了解Android Handler、Looper、Message
android·线程·多线程
concisedistinct12 天前
C++游戏开发中的多线程处理是否真的能够显著提高游戏性能?如果多个线程同时访问同一资源,会发生什么?如何避免数据竞争?|多线程|游戏开发|性能优化
c++·游戏·多线程