mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
c3a41d83de
Simplify the implementation by implementing it directly in C++. This improves performance and also makes structuredClone supported in custom snapshots. PR-URL: https://github.com/nodejs/node/pull/50330 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
47 lines
990 B
JavaScript
47 lines
990 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
type: ['string', 'object', 'arraybuffer'],
|
|
n: [1e4],
|
|
});
|
|
|
|
function main({ n, type }) {
|
|
const data = [];
|
|
|
|
switch (type) {
|
|
case 'string':
|
|
for (let i = 0; i < n; ++i) {
|
|
data.push(new Date().toISOString());
|
|
}
|
|
break;
|
|
case 'object':
|
|
for (let i = 0; i < n; ++i) {
|
|
data.push({ ...process.config });
|
|
}
|
|
break;
|
|
case 'arraybuffer':
|
|
for (let i = 0; i < n; ++i) {
|
|
data.push(new ArrayBuffer(10));
|
|
}
|
|
break;
|
|
default:
|
|
throw new Error('Unsupported payload type');
|
|
}
|
|
|
|
const run = type === 'arraybuffer' ? (i) => {
|
|
data[i] = structuredClone(data[i], { transfer: [ data[i] ] });
|
|
} : (i) => {
|
|
data[i] = structuredClone(data[i]);
|
|
};
|
|
|
|
bench.start();
|
|
for (let i = 0; i < n; ++i) {
|
|
run(i);
|
|
}
|
|
bench.end(n);
|
|
assert.strictEqual(data.length, n);
|
|
}
|