100pourcent 中文文档教程

发布于 7年前 浏览 22 项目主页 更新于 3年前

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

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文