You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create index.js file and time execution time.
When using fast-glob in cli tools, require/init time is dominating runtime performance. Only when globing large directories, fast-glob is faster. fast-glob is slower by 50ms when starting process.
The text was updated successfully, but these errors were encountered:
Environment
Actual behavior
$ time node index.js glob [AsyncFunction: FastGlob] { sync: [Function: sync], stream: [Function: stream], generateTasks: [Function: generateTasks], isDynamicPattern: [Function: isDynamicPattern], escapePath: [Function: escapePath] } real 0m0,127s user 0m0,090s sys 0m0,013s
time node index.js
Expected behavior
Should have similar require time as glob package.
Steps to reproduce
create index.js file and time execution time.
When using fast-glob in cli tools, require/init time is dominating runtime performance. Only when globing large directories, fast-glob is faster. fast-glob is slower by 50ms when starting process.
The text was updated successfully, but these errors were encountered: