Rust
#web
Ownership
- Each value in Rust has a variable that’s called its owner.
- There can only be one owner at a time.
- When the owner goes out of scope, the value will be dropped.
Backend
- Actix-web
- Quick
- Rocket Benchmarks
gRPC #net #comms
Rayon
https://crates.io/crates/rayon
- Data parallelism
FFI
How to implement long-lived variables/state in a library? Foreign Function Interface - Rustonomicon