DEV Community

Discussion on: Rust or Go for web development?

 
oliverjumpertz profile image
Oliver Jumpertz

Yea, our opinions seem to match there. :-)

If we simplify Go's channels into just an unbound stream of typed messages, we could use reactive streams RxRust e.g..
But we won't be able to exactly reproduce the comfort of language level features for asynchronously waiting for a return value, while the runtime takes care of halting the thread execution until said response really arrives.

Thread Thread
 
leob profile image
leob • Edited

Right, I see, yes that's what Rust doesn't have, Go's runtime ... so that means it would be hard to implement it in exactly the same way.

Some "history" on Reddit (reddit.com/r/rust/comments/a6f85e/...

"While the concept of 'goroutines' is unique to Go, they represent a feature of many languages known as green threads, where there are an arbitrary number of green threads per system thread.

Once upon a time in pre 1.0, Rust natively implemented green threads. It was decided however that green threads were somewhat antithetical to Rust's philosophy, particularly the aim of having a minimal runtime, so they were dropped in favour of system threads."

So okay, you can achieve the same thing but it will probably "feel" less seamless than it does in Golang.

Thread Thread
 
oliverjumpertz profile image
Oliver Jumpertz

Yes, exactly. :-)

Thread Thread
 
oliverjumpertz profile image
Oliver Jumpertz • Edited

One more thing I actually forgot about and which may actually help and is more native than using something like Rx: Rust channels

Thread Thread
 
leob profile image
leob

Right! so there you have it ... however when I read the article that these Rust channels are for "native OS threads" rather than the 'green threads' or coroutines that we're talking about?

Thread Thread
 
oliverjumpertz profile image
Oliver Jumpertz

Yep, no green threads for Rust. Those channels are indeed thread backed. :-)