ozansz / gls

Minimal file manager with terminal UI #Go
https://sazak.io/gls-file-manager-on-terminal-with-go/
MIT License
68 stars 5 forks source link

make the file tree traversal algorithm concurrent #17

Closed ozansz closed 2 years ago

ozansz commented 2 years ago

Summary

The file traversal algorithm currently runs in a single iteration. We can split it into goroutines, or use a worker pool, etc. The algorithm performance should also be tested with a new benchmark test with profiling enabled.

GaruGaru commented 2 years ago

Can I work on this ?