mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
fff1549551
PR-URL: https://github.com/nodejs/node/pull/54745 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
59 lines
1.1 KiB
JavaScript
59 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const dc = require('node:diagnostics_channel');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e8],
|
|
checkSubscribers: [1, 0],
|
|
objSize: [10, 1e2, 1e3],
|
|
subscribers: [0, 1, 10],
|
|
});
|
|
|
|
function noop() {}
|
|
|
|
function createObj(size) {
|
|
return Array.from({ length: size }, (n) => ({
|
|
foo: 'yarp',
|
|
nope: {
|
|
bar: '123',
|
|
a: [1, 2, 3],
|
|
baz: n,
|
|
c: {},
|
|
b: [],
|
|
},
|
|
}));
|
|
}
|
|
|
|
function main({ n, subscribers, checkSubscribers, objSize }) {
|
|
const channel = dc.channel('test');
|
|
for (let i = 0; i < subscribers; i++) {
|
|
channel.subscribe(noop);
|
|
}
|
|
|
|
const publishWithCheck = () => {
|
|
const data = createObj(objSize);
|
|
bench.start();
|
|
for (let i = 0; i < n; i++) {
|
|
if (channel.hasSubscribers) {
|
|
channel.publish(data);
|
|
}
|
|
}
|
|
bench.end(n);
|
|
};
|
|
|
|
const publishWithoutCheck = () => {
|
|
const data = createObj(objSize);
|
|
bench.start();
|
|
for (let i = 0; i < n; i++) {
|
|
channel.publish(data);
|
|
}
|
|
bench.end(n);
|
|
};
|
|
|
|
if (checkSubscribers) {
|
|
publishWithCheck();
|
|
} else {
|
|
publishWithoutCheck();
|
|
}
|
|
}
|