diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2011-11-09 17:32:39 +0100 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2011-11-09 17:34:53 +0100 |
commit | 4fc0fdc6ee8c41320f4d4ea74e4fa8a3ac12ed57 (patch) | |
tree | 9f0de52a3bde9b25729873f4a8fc590592cc9a2e | |
parent | cdcb1118c83c9f5804b6d22c8b13b2dd084c140b (diff) | |
download | node-new-4fc0fdc6ee8c41320f4d4ea74e4fa8a3ac12ed57.tar.gz |
bench: start (NUM_CPUS-1) workers
The master is a worker too so fork off one less worker.
-rw-r--r-- | benchmark/http_simple_cluster.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/benchmark/http_simple_cluster.js b/benchmark/http_simple_cluster.js index b49ea400b7..ecc3169adb 100644 --- a/benchmark/http_simple_cluster.js +++ b/benchmark/http_simple_cluster.js @@ -2,7 +2,8 @@ var cluster = require('cluster'); var os = require('os'); if (cluster.isMaster) { - for (var i = 0, n = os.cpus().length; i < n; ++i) cluster.fork(); + console.log('master running on pid %d', process.pid); + for (var i = 1, n = os.cpus().length; i < n; ++i) cluster.fork(); } else { require(__dirname + '/http_simple.js'); } |