1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 13:14:06 +01:00
server/bundle/src/start.ts
2021-09-19 18:45:09 +02:00

35 lines
725 B
TypeScript

// process.env.MONGOMS_DEBUG = "true";
import cluster from "cluster";
import os from "os";
import { initStats } from "./stats";
// TODO: add tcp socket event transmission
const cores = 1 || Number(process.env.threads) || os.cpus().length;
if (cluster.isMaster && !process.env.masterStarted) {
process.env.masterStarted = "true";
(async () => {
initStats();
if (cores === 1) {
require("./Server");
return;
}
// Fork workers.
for (let i = 0; i < cores; i++) {
cluster.fork();
}
cluster.on("exit", (worker: any, code: any, signal: any) => {
console.log(
`[Worker] died with pid: ${worker.process.pid} , restarting ...`
);
cluster.fork();
});
})();
} else {
require("./Server");
}