Hacker News new | ask | show | jobs
by brink 1728 days ago
> Additionally, Rust is pretty in-your-face when it comes to concurrency and sharing memory across thread/task boundaries.

Use channels whenever possible.

1 comments

Channels are not always the best solution (unless you're referring to Rust channels?)

https://www.jtolio.com/2016/03/go-channels-are-bad-and-you-s...

Yeah, Rust's crossbeam channels are actually really good.