summaryrefslogtreecommitdiff
path: root/benchmark/http_simple_cluster.js
blob: c2c792c5cb344bd55543f57230902e54ff0eceb8 (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';
var cluster = require('cluster');
var os = require('os');

if (cluster.isMaster) {
  console.log('master running on pid %d', process.pid);
  for (var i = 0, n = os.cpus().length; i < n; ++i) cluster.fork();
} else {
  require(__dirname + '/http_simple.js');
}