February 28, 2020
A Tale of Optimizing Rust Code!
One of the things that the Rust programming language is famous for is its SPEED!
But even Rust code can be optimized to run even FASTER at times.
The Filtering Duplicates on the Command Line: 30x Faster than sort|uniq article by Karolin Varner tells a tale of optimizing the PERFORMANCE of some Rust code.
I must STUDY these Rust optimization techniques!