ChrisNeedham24 / lff

Recursively locates large files.
GNU General Public License v3.0
2 stars 0 forks source link

Improve performance of glob pattern matching #3

Open ChrisNeedham24 opened 6 months ago

ChrisNeedham24 commented 6 months ago

Currently, glob pattern matching is quite a bit slower than the regex matching that dust provides - it takes almost 3 times as long, as the benchmarks show. There must be a way to improve this performance - the first thing that comes to mind is building the GlobMatcher once rather than on every call to handle_directory().

ChrisNeedham24 commented 6 days ago

Acceptance Criteria: