���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/home/real/node-v13.0.1/benchmark/fs/ |
'use strict'; const common = require('../common'); const fsPromises = require('fs').promises; const bench = common.createBenchmark(main, { n: [20e4], statType: ['fstat', 'lstat', 'stat'] }); async function run(n, statType) { const handleMode = statType === 'fstat'; const arg = handleMode ? await fsPromises.open(__filename, 'r') : __filename; let remaining = n; bench.start(); while (remaining-- > 0) await (handleMode ? arg.stat() : fsPromises[statType](arg)); bench.end(n); if (typeof arg.close === 'function') await arg.close(); } function main(conf) { const n = conf.n >>> 0; const statType = conf.statType; run(n, statType).catch(console.log); }