|
|
|
|
|
by pjmlp
670 days ago
|
|
Rust's concurrency is only safe in the very specific use case of threads trying to access common resources on the same memory space. It does nothing to prevent data races between processes, or concurrency errors between threads accessing resources that are external to the process. Scenarios quite relevant in distributed systems. |
|