Node can enable multi-threading; you can use the "child_process" module that comes with node to enable multi-threading. The syntax is "child_process.fork(modulePath[, args][, options])"; using this module can Create four types of child processes: exec, execFile, spawn, and fork.
The operating environment of this tutorial: windows10 system, nodejs version 12.19.0, Dell G3 computer.
Can node enable multi-threading?
Can node enable multi-threading?
We all know that Node.js runs in single-threaded mode. But it uses event-driven to handle concurrency. Based on the event-driven, non-blocking I/O model, it makes full use of the asynchronous I/O provided by the operating system for multi-task execution. It is suitable for I/O-intensive application scenarios because Asynchronous, the program does not need to block waiting for the result to be returned
The emergence of NodeJS multi-threading is not to improve concurrency, but to fully improve CPU utilization
Several ways to open multi-threading
Use the child_process module that comes with Node
child_process.fork(modulePath[, args][, options])
Spawn a new Node.js process and use the established IPC communication channel (which allows messages to be sent between parent and child processes) to call the specified module
cluster The cluster module can easily create child processes that share server ports. The worker process is derived using the child_process.fork() method
Use multiple processes
express
Create three new files server.js (express service) cluster.js (multi-threaded service file) extensionServer.js (express sub-service)
The following operations ensure that express is installed
npm intsall express --seve-dev
extensionServer.js Use express to create sub-services
const express = require("express"), //Express框架 app = express(); // api 先关接口 app.all('/userinfo', (req, res) => { res.json({ name: '自夏', msg: '我在自夏 selfsummer' }) }) app.listen(4000, () => { console.log(`子服务启动成功`); })
serve.js First create Express multi-threaded service
const { fork } = require("child_process"), express = require("express"), //Express框架 app = express(); const { pid, ppid } = require('process') // api 先关接口 app.all('/123', (req, res, next) => { console.log(`本次进程id为: ${pid}`); res.end(`本次进程id为: ${pid}`) }) app.all('/456', (req, res, next) => { console.log(`本次进程id为: ${pid}`); res.end(`本次进程id为: ${pid}`) }) app.listen(3888, () => { console.log(`服务器端启动成功 父进程 ${ppid} 当前服务进程id为 ${pid}`); // 开启多进程 fork('extensionServer.js') }) module.exports = { app, express, };
Start the service. At this time, both the main service and the self-service have been started.
You can access the Express main service and sub-service addresses successfully
cluster .js Change the Express service to a cluster
Use the cluster cluster module to enable multi-threading
const os = require('os'); const cluster = require('cluster'); const { log } = console; const express = require("express"); //Express框架 const app = express(); const processId = process.pid; // 判断当前是否有主进程 if (cluster.isMaster) { // 获取当前本机cpu核数,开启多线程 const cpus = os.cpus().length; for (let i = 0; i { console.log(`进程号 #${worker.id} 已断开`); }); // 意外退出进程 cluster.on('exit', (worker, code, signal) => { cluster.fork(); }); } else { // 引用Express主服务 开启主进程 require('./server') }
Start the cluster service node cluster
Of course, you can also continue to open child processes in the cluster
Interface after the second visit (one browser visit, one Postman visit)
Why are there multiple The server started successfully and the current service process id is xxx
should be the cluster module that spawns sub-processes under the current main process. Each sub-process is a new process based on all
of the main process. The processes are independent of each other. , each process has its own V8 instance and memory, and system resources are limited. It is not recommended to spawn too many child processes. The general settings are based on the system *
Number of CPU cores*
We have previously judged whether there is a main process
If there is a main process, use the cluster module to open the child process
If not, open the process
Change the Express service to the default http Service
You only need to change the contents of the server.js file
const http = require('http')const { pid, ppid } = require('process')const server = http.createServer((req, res) => { res.end(router(req.url))})const router = (url) => { switch (url) { case '/132': return `进程${pid} 很高兴为你服务`; case '/456': return `进程${pid} 很高兴为你服务`; default: return `没有此接口` }}server.listen(3889, () => { console.log(`Server Started in process ${pid}`);})
Still start cluster.js (multi-threaded service file)
Recommended study: " nodejs video tutorial》
The above is the detailed content of Can node enable multi-threading?. For more information, please follow other related articles on the PHP Chinese website!

node、nvm与npm的区别:1、nodejs是项目开发时所需要的代码库,nvm是nodejs版本管理工具,npm是nodejs包管理工具;2、nodejs能够使得javascript能够脱离浏览器运行,nvm能够管理nodejs和npm的版本,npm能够管理nodejs的第三方插件。

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

node导出模块的两种方式:1、利用exports,该方法可以通过添加属性的方式导出,并且可以导出多个成员;2、利用“module.exports”,该方法可以直接通过为“module.exports”赋值的方式导出模块,只能导出单个成员。

安装node时会自动安装npm;npm是nodejs平台默认的包管理工具,新版本的nodejs已经集成了npm,所以npm会随同nodejs一起安装,安装完成后可以利用“npm -v”命令查看是否安装成功。

node中没有包含dom和bom;bom是指浏览器对象模型,bom是指文档对象模型,而node中采用ecmascript进行编码,并且没有浏览器也没有文档,是JavaScript运行在后端的环境平台,因此node中没有包含dom和bom。

Node.js 如何实现异步资源上下文共享?下面本篇文章给大家介绍一下Node实现异步资源上下文共享的方法,聊聊异步资源上下文共享对我们来说有什么用,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
