semkiv / fzgrep-rs

Fuzzy grep implemented in Rust
MIT License
0 stars 0 forks source link

Multi-threaded processing #6

Open semkiv opened 10 months ago

semkiv commented 10 months ago

Currently the application runs in a single-threaded mode. In order to improve performance and make use of modern hardware, multi-threaded processing has to be implemented.

semkiv commented 10 months ago

An async approach seems tempting as well. It should be considered too.