mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
95434fbf28
PR-URL: https://github.com/nodejs/node/pull/46473 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
24 lines
484 B
JavaScript
24 lines
484 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
extraSize: [1, 256, 4 * 256],
|
|
n: [8e5],
|
|
});
|
|
|
|
function main({ n, extraSize }) {
|
|
const pieces = 4;
|
|
const pieceSize = 256;
|
|
|
|
const list = Array.from({ length: pieces })
|
|
.fill(Buffer.allocUnsafe(pieceSize));
|
|
|
|
const totalLength = (pieces * pieceSize) + extraSize;
|
|
|
|
bench.start();
|
|
for (let i = 0; i < n; i++) {
|
|
Buffer.concat(list, totalLength);
|
|
}
|
|
bench.end(n);
|
|
}
|