Error handling in Rust is very different if you’re coming from other languages. In languages like Java, JS, Python etc, you usually throw exceptions and return successful values. In Rust, you return something called a Result. (more…)
Read more »
Rust is a modern systems programming language focusing on safety, speed,
and concurrency. It accomplishes these goals by being memory safe without using
garbage collection. (more…)
Read more »
Oh! The tests of Rust rewrite of Unix core utils (cp, ls, echo, ...) is breaking; because of a non-supported command. I was going to send a minor PR to fix t... (more…)
Read more »
We look at BPF, the new Linux technology that allows running user supplied programs in the kernel, and how Red Sift uses RedBPF to power InGRAINd. (more…)
Read more »
In the first post in our open source series, we share our solution for gRPC client-side load balancing in Rust, using ginepro.
(more…)
Read more »