ozansz / gls

Minimal file manager with terminal UI #Go

Home Page:https://sazak.io/gls-file-manager-on-terminal-with-go/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

make the file tree traversal algorithm concurrent

ozansz opened this issue · comments

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.

Can I work on this ?