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
The walk function is called for each directory inside the root directory. And it takes 256ms.
Expected behaviour
One the walk function call. And… it takes around 2-5ms.
The text was updated successfully, but these errors were encountered:
mrmlnc
changed the title
Very slow in a directory with nested directories
Very slow in a directory with nested directories and one-level pattern
May 22, 2019
Probably not. With directory/* pattern result is correctly (only files from the first level of the directory directory), but inside we read all the subdirectories (like with dirrctory/** pattern).
Looks like edge case. With directory/*.json pattern works correctly.
Versions
A directory tree
Reproduce steps
Current behaviour
The
walk
function is called for each directory inside the root directory. And it takes 256ms.Expected behaviour
One the
walk
function call. And… it takes around 2-5ms.The text was updated successfully, but these errors were encountered: