Skip to content

Commit

Permalink
benchmark: add benches for fs.stat & fs.statSync
Browse files Browse the repository at this point in the history
Add very simple benchmarks for `fs.stat` and `fs.statSync` as
well as `fs.lstat` and `fs.lstatSync` based on the `readdir`
benchmarks.

PR-URL: #8338
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Brian White <[email protected]>
  • Loading branch information
addaleax authored and Fishrock123 committed Sep 14, 2016
1 parent 7cc1391 commit 00f4bc3
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
23 changes: 23 additions & 0 deletions benchmark/fs/bench-stat.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
'use strict';

const common = require('../common');
const fs = require('fs');

const bench = common.createBenchmark(main, {
n: [1e4],
kind: ['lstat', 'stat']
});


function main(conf) {
const n = conf.n >>> 0;

bench.start();
(function r(cntr, fn) {
if (cntr-- <= 0)
return bench.end(n);
fn(__filename, function() {
r(cntr, fn);
});
}(n, fs[conf.kind]));
}
21 changes: 21 additions & 0 deletions benchmark/fs/bench-statSync.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
'use strict';

const common = require('../common');
const fs = require('fs');

const bench = common.createBenchmark(main, {
n: [1e4],
kind: ['lstatSync', 'statSync']
});


function main(conf) {
const n = conf.n >>> 0;
const fn = fs[conf.kind];

bench.start();
for (var i = 0; i < n; i++) {
fn(__filename);
}
bench.end(n);
}

0 comments on commit 00f4bc3

Please sign in to comment.