mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
29e74d4952
Code in benchmark directory sometimes uses `function () {}` for anonymous callbacks and sometimes uses `() => {}`. Multi-line arrays sometimes have a trailing comma and sometimes do not. Update to always use arrow functions for anonymous callbacks and trailing commas for multiline arrays. PR-URL: https://github.com/nodejs/node/pull/25944 Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
// test UDP send/recv throughput with the new single Buffer API
|
|
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const dgram = require('dgram');
|
|
const PORT = common.PORT;
|
|
|
|
// `num` is the number of send requests to queue up each time.
|
|
// Keep it reasonably high (>10) otherwise you're benchmarking the speed of
|
|
// event loop cycles more than anything else.
|
|
const bench = common.createBenchmark(main, {
|
|
len: [1, 64, 256, 1024],
|
|
num: [100],
|
|
type: ['send', 'recv'],
|
|
dur: [5]
|
|
});
|
|
|
|
function main({ dur, len, num, type }) {
|
|
const chunk = Buffer.allocUnsafe(len);
|
|
var sent = 0;
|
|
var received = 0;
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
function onsend() {
|
|
if (sent++ % num === 0) {
|
|
for (var i = 0; i < num; i++) {
|
|
socket.send(chunk, PORT, '127.0.0.1', onsend);
|
|
}
|
|
}
|
|
}
|
|
|
|
socket.on('listening', () => {
|
|
bench.start();
|
|
onsend();
|
|
|
|
setTimeout(() => {
|
|
const bytes = (type === 'send' ? sent : received) * chunk.length;
|
|
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
|
|
bench.end(gbits);
|
|
process.exit(0);
|
|
}, dur * 1000);
|
|
});
|
|
|
|
socket.on('message', () => {
|
|
received++;
|
|
});
|
|
|
|
socket.bind(PORT);
|
|
}
|