|
|
|
|
|
by jeffbee
338 days ago
|
|
How much of the speedup over GNU ls is due to lacking localization features? Your results table is pretty much consistent with my local observations: in a dir with 13k files, `ls -al` needs 33ms. But 25% of that time is spent by libc in `strcoll`. Under `LC_ALL=C` it takes just 27ms, which is getting closer to the time of your program. |
|
Locales also bring in a lot more complicated sorting - so that could be a factor also.