Our great sponsors
- CodiumAI - TestGPT | Generating meaningful tests for busy devs
- ONLYOFFICE ONLYOFFICE Docs — document collaboration in your environment
- InfluxDB - Access the most powerful time series database as a service
- SonarQube - Static code analysis for 29 languages.
-
Rust has a few places I’d reach for it first, like writing shared libraries to load into other programs. Eg, a plug-in for PAM on Linux. Kernel modules, apache or nginx modules, etc. Also since you know Python, you might be interested in writing python extensions, which Rust is good for by way of the https://pyo3.rs/ project.
-
-
CodiumAI
TestGPT | Generating meaningful tests for busy devs. Get non-trivial tests (and trivial, too!) suggested right inside your IDE, so you can code smart, create more value, and stay confident when you push.
-
You absolutely can write very high performance software in Go, that's kind of the point. You can efficiently interface with C libraries. You can create the sort of software everyone says should be done in Rust, like databases and web servers and system orchestration and games and every other goddamn thing that people will say isn't the right choice for Go.
-
TinyGo
Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.
The large runtime is easy to discuss, quite simply your binaries tend to be larger in Go (which is statically linked) than in C (which generally defaults to dynamically linked, and your libraries are shared with other software as well. On normal systems, even small ones like a Pi, this isn't a practical issue, because it's not really that big anyway. Where this really means something is in the embedded space, where your storage and memory are measured in kilobytes rather than megabytes. There are projects to make Go smaller, and you can save some space using gccgo with dynamic linking, so the size factor is becoming less of an issue.
-
You absolutely can write very high performance software in Go, that's kind of the point. You can efficiently interface with C libraries. You can create the sort of software everyone says should be done in Rust, like databases and web servers and system orchestration and games and every other goddamn thing that people will say isn't the right choice for Go.
-
You absolutely can write very high performance software in Go, that's kind of the point. You can efficiently interface with C libraries. You can create the sort of software everyone says should be done in Rust, like databases and web servers and system orchestration and games and every other goddamn thing that people will say isn't the right choice for Go.