This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone -b <your_branch> --single-branch <your_repository_url> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const cluster = require('cluster'); | |
| if (cluster.isMaster) { | |
| // Count the machine's CPUs | |
| let cpuCount = require('os').cpus().length; | |
| // Create a worker for each CPU | |
| for (var i = 0; i < cpuCount; i += 1) { | |
| startWorker(); | |
| } |
NewerOlder