mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
487 B
21 lines
487 B
9 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const http = require('http');
|
||
|
const cluster = require('cluster');
|
||
|
|
||
|
cluster.schedulingPolicy = cluster.SCHED_NONE;
|
||
|
|
||
|
const server = http.createServer();
|
||
|
if (cluster.isMaster) {
|
||
|
server.listen(common.PORT);
|
||
|
const worker = cluster.fork();
|
||
|
worker.on('exit', common.mustCall(() => {
|
||
|
server.close();
|
||
|
}));
|
||
|
} else {
|
||
|
server.listen(common.PORT);
|
||
|
server.on('error', common.mustCall((e) => {
|
||
|
cluster.worker.disconnect();
|
||
|
}));
|
||
|
}
|