2019-04-05 15:57:59 -04:00
|
|
|
// Benchmark measures time it takes to start and stop a number of workers.
|
|
|
|
const workerCount = 50;
|
|
|
|
|
|
|
|
async function bench(): Promise<void> {
|
|
|
|
const workers: Worker[] = [];
|
2019-09-07 12:27:18 -04:00
|
|
|
for (let i = 1; i <= workerCount; ++i) {
|
2019-08-08 17:38:53 -04:00
|
|
|
const worker = new Worker("./subdir/bench_worker.ts");
|
2019-11-13 13:42:34 -05:00
|
|
|
const promise = new Promise((resolve): void => {
|
|
|
|
worker.onmessage = (e): void => {
|
|
|
|
if (e.data.cmdId === 0) resolve();
|
|
|
|
};
|
|
|
|
});
|
2019-04-05 15:57:59 -04:00
|
|
|
worker.postMessage({ cmdId: 0, action: 2 });
|
|
|
|
await promise;
|
|
|
|
workers.push(worker);
|
|
|
|
}
|
|
|
|
console.log("Done creating workers closing workers!");
|
|
|
|
for (const worker of workers) {
|
|
|
|
worker.postMessage({ action: 3 });
|
|
|
|
await worker.closed; // Required to avoid a cmdId not in table error.
|
|
|
|
}
|
|
|
|
console.log("Finished!");
|
|
|
|
}
|
|
|
|
|
|
|
|
bench();
|