Skip to content

Commit

Permalink
chores: remove repeat words (ElemeFE#50)
Browse files Browse the repository at this point in the history
“执行” 这个词在这里出现了俩次
  • Loading branch information
rustdreamer authored and Lellansin committed Oct 10, 2017
1 parent 5fe6a67 commit f5196e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sections/zh-cn/process.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ console.log('hello'); // | | 都执行了

在上述代码中 numCPUs 虽然是全局变量但是, 在父进程中修改它, 子进程中并不会改变, 因为父进程与子进程是完全独立的两个空间. 他们所谓的共有仅仅只是都执行了, 并不是同一份.

你可以把父进程执行的部分当做 `a.js`, 子进程执行的部分当做 `b.js`, 你可以把他们想象成是先执行了 `node a.js` 然后 cluster.fork 了几次, 就执行执行了几次 `node b.js`. 而 cluster 模块则是二者之间的一个桥梁, 你可以通过 cluster 提供的方法, 让其二者之间进行沟通交流.
你可以把父进程执行的部分当做 `a.js`, 子进程执行的部分当做 `b.js`, 你可以把他们想象成是先执行了 `node a.js` 然后 cluster.fork 了几次, 就执行了几次 `node b.js`. 而 cluster 模块则是二者之间的一个桥梁, 你可以通过 cluster 提供的方法, 让其二者之间进行沟通交流.

### How It Works

Expand Down

0 comments on commit f5196e7

Please sign in to comment.