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
Opening a folder with hidden items visible in a GUI over the network is slow. Why?
It probably has to do with exponential or factorial listings of directories.
If it's just round trips over the network, too bad.
If it's the actual listing process, we can fix it by listing only tags and then bailing in readdir if we match /\/\./. That means reordering stuff there a little.
How long does it take to ls -a problem directories?
The text was updated successfully, but these errors were encountered:
Opening a folder with hidden items visible in a GUI over the network is slow. Why?
It probably has to do with exponential or factorial listings of directories.
If it's just round trips over the network, too bad.
If it's the actual listing process, we can fix it by listing only tags and then bailing in
readdir
if we match/\/\./
. That means reordering stuff there a little.How long does it take to
ls -a
problem directories?The text was updated successfully, but these errors were encountered: