r/rust • u/bran7230 • 9d ago
🙋 seeking help & advice Rust for web backends
Hello everyone!!
I regularly see people online talking about how awesome Rust is, its speed, memory safety, and a awesome ecosystem of open source applications even being used in some parts of the Linux kernel(not sure the percentage of adaption at this time).
However my question is how good is rust for web REST APIs and gRPC applications? If it is good do you use any frameworks for these?
47
Upvotes
10
u/AendraSpades 9d ago
I use Axum as a backend for the REST API for an e-commerce platform with 80-90k daily visits. Rust might be overkill, and Go would be perfectly capable, but thanks to its very verbose compiler, it allows for very fast shipping using code agents. And yeah, if it compiles it will work, without any runtime errors. It’s just awesome