Remove micro-optimizations that no longer yield any benefits, restructure timers & immediates to be a bit more straightforward. Adjust timers benchmarks to run long enough to offer meaningful data. PR-URL: https://github.com/nodejs/node/pull/17279 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com>
27 lines
561 B
JavaScript
27 lines
561 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
millions: [1],
|
|
});
|
|
|
|
function main(conf) {
|
|
const iterations = +conf.millions * 1e6;
|
|
|
|
const timersList = [];
|
|
|
|
bench.start();
|
|
for (var i = 0; i < iterations; i++) {
|
|
timersList.push(setTimeout(cb, i + 1));
|
|
}
|
|
bench.end(iterations / 1e6);
|
|
|
|
for (var j = 0; j < iterations + 1; j++) {
|
|
clearTimeout(timersList[j]);
|
|
}
|
|
}
|
|
|
|
function cb() {
|
|
assert(false, `Timer ${this._idleTimeout} should not call callback`);
|
|
}
|