John Carmack: writing Rust code feels wholesome
1–10 of 85 posts
Re: John Carmack: writing Rust code feels wholesome
#2Re: John Carmack: writing Rust code feels wholesome
#3Re: John Carmack: writing Rust code feels wholesome
#4Anyone can confirm ?
Re: John Carmack: writing Rust code feels wholesome
#5C++ continues to lose mind-share. When will the community acknowledge that their tooling is lacking?
Re: John Carmack: writing Rust code feels wholesome
#6Many comments in twitter mentions rust still not being ready for server code ( which i start to feel strange since concurrency is the only major issue on the server side, and supposed to be rust strength). Anyone can confirm ?
Re: John Carmack: writing Rust code feels wholesome
#7Many comments in twitter mentions rust still not being ready for server code ( which i start to feel strange since concurrency is the only major issue on the server side, and supposed to be rust strength). Anyone can confirm ?
Many people are waiting for async/await before saying “please come try this”, as it makes the enterprise far easier. We’re quite close!
Re: John Carmack: writing Rust code feels wholesome
#8Many comments in twitter mentions rust still not being ready for server code ( which i start to feel strange since concurrency is the only major issue on the server side, and supposed to be rust strength). Anyone can confirm ?
Re: John Carmack: writing Rust code feels wholesome
#9Many comments in twitter mentions rust still not being ready for server code ( which i start to feel strange since concurrency is the only major issue on the server side, and supposed to be rust strength). Anyone can confirm ?
Re: John Carmack: writing Rust code feels wholesome
#10Many comments in twitter mentions rust still not being ready for server code ( which i start to feel strange since concurrency is the only major issue on the server side, and supposed to be rust strength). Anyone can confirm ?
Currently, it's ready in the sense you can write robust, high-performance network code. It's still easier than in C or C++, but it's not noob-friendly compared to Node.js or Go yet. Code based on Futures uses owned closures a lot, so you need to "get" ownership in order not to fight the compiler.
With the async/await syntax, the compiler will be able to relax some of the memory ownership restrictions, and you'll be able to write "normal" code instead of chains of callbacks.