Rust
The first question anyone might ask themselves when they read the title. This is an extremely valid question, since why if one could learn something as simple as Python, would one want to learn a language like Rust? I know this because that was the first question that I asked. The answer is not entirely formulated as I still learn new and exciting things everyday.
What I can say is that for one Rust is fast. To understand how fast I cant directly compare a language like Python with it. But I can compare how fast Python vs Go is, and I can also compare how fast Rust vs Go is. Then to understand how much faster Rust is than go (even though the gap is small on some benchmarks) one can look at the Rust vs C and Go vs C. A co-worker of mine told me you can’t really rely on benchmarks because people can always tweak and do small optimizations to make anything faster, but the fact that it competes with C is insane. It is also important to note that these are only benchmarks from one source.
One of the other things I can say is that it is actively developed (and by a big player in the open source space ~ Mozilla). There are websites called arewe
A big reason why I started to learn Go was its ability to produce a fully self-contained binary/executable that works on any operating system. As someone who dislikes the need for virtual environments when using Python in order to manage dependancies, this is like a breath of fresh air. This was before I came to know of docker. Rust also has this ability with cargo build
.
The one that got me interested in Rust was none other than Sam, the one who also introduced me to Python, Go, and many other of the skills that I am currently developing. One of the things that got him interested was an emulator project built in Rust that runs in the browser. Its kinda hard to understand why this particular example is quite exciting, since I myself don’t yet fully understand web-assembly, but I do know that being able to an emulator in a browser is freaking awesome.
What better way to learn a language than to dive right into it with a project. After spending a few hours of reading various crate documentation/Rust documentation and hacking, Sam and I made the basis for a Rust ported version of my concurrent web crawler written in Go. The source code for goccer has not been published on a public repository yet, but the source code for cruster is publicly available. Its hard to compare the crawlers at this stage since the way that Sam and I designed the Rust crawler is different in the output process.