100pourcent 中文文档教程
100pourcent.js
允许 NodeJS 使用所有 CPU 的核心
这真的很容易使用。 这是我的基本代码,它只能使用我的 CPU 的 1 个核心:
const http = require('http');
http.createServer((req, res) => {
res.writeHead(200);
res.end('hello world\n');
}).listen(8000);
使用 NPM 安装 100pourcent
模块:
npm i 100pourcent
编辑代码以要求模块并在参数中传递我们的代码,在一个函数中:
require("100pourcent")(()=>{
const http = require('http');
http.createServer((req, res) => {
res.writeHead(200);
res.end('hello world\n');
}).listen(8000);
});
然后我们的应用程序可以使用 100% 的 CPU 内核
100pourcent.js
Allow NodeJS to use all CPU's cores
That's really easy to use. That's my base code who can use only 1 core of my CPU :
const http = require('http');
http.createServer((req, res) => {
res.writeHead(200);
res.end('hello world\n');
}).listen(8000);
use NPM to install the 100pourcent
module :
npm i 100pourcent
edit the code to require the module and pass our code in argument, in a function :
require("100pourcent")(()=>{
const http = require('http');
http.createServer((req, res) => {
res.writeHead(200);
res.end('hello world\n');
}).listen(8000);
});
Then our app can use 100% of the CPU cores
更多
你可能也喜欢
- 6to5-sluff 中文文档教程
- @0x-jerry/eslint-config 中文文档教程
- @21kb/react-online-status-hook 中文文档教程
- @666666/messagejs 中文文档教程
- @a1motion/defer 中文文档教程
- @aaa-backend-stack/git-info 中文文档教程
- @aaa-backend-stack/graphql-rest-bindings 中文文档教程
- @abbiamo/white-label 中文文档教程
- @abdullahcalisir12/vl-leader-line 中文文档教程
- @abtnode/auth-service 中文文档教程