Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

Rust’s solution to concurrency is a hell of a lot more than just solving memory management. As long as you avoid `unsafe`, Rust statically prevents all race conditions. Rust also makes it so if you can parallelize something, then you’ve proven that it’s safe to parallelize it, and therefore you can parallelize complex systems in Rust that you simply wouldn’t have the confidence to do with other languages.


view as:

Rust prevents data races, not race conditions.

You're absolutely right, I meant to write "data races" there.

Legal | privacy