|
|
|
Ask HN: Have you migrated from Go to Rust?
|
|
1 points
by TXV
2199 days ago
|
|
Our current codebase is written in Go, mostly web servers, middleware and queue workers. Some of Rust strengths (memory safety, concurrency, absence of GC) look well suited for our problem domain. We currently have the opportunity to overhaul part of our system to reduce some legacy technical debt, so I'm wondering if it makes sense to rewrite in Rust. I'm not looking to solve a specific technical challenge. Just curious. So, if you migrated from Go to Rust, I would love to hear about your experience. |
|
Go has all those things except "absence of GC." It you're more careful you can eliminate a lot of reallocations (e.g. make sure to use capacity param whenever known).
What is the nature of "legacy technical debt" and how would it be better/different with Rust?