Hacker News new | ask | show | jobs
by dorianniemiec 479 days ago
Thank you for the feedback! I think this is an advantage of Rust that prevents common pitfalls related to concurrent programming, making web servers written in Rust safer.
1 comments

So deadlock free, or don't you just fear deadlocks, rather ignore the possibility?
Deadlocks are easy to debug and fix. Data races are not. There are also tools like tracing mutex to catch deadlocks more easily at runtime without necessarily encountering it.