Blocking code is a leaky abstraction
October 19, 2024
Asynchronous code does not require the rest of your code to be asynchronous. I can’t say the same for blocking code.
The world's number one source of notgull
October 19, 2024
Asynchronous code does not require the rest of your code to be asynchronous. I can’t say the same for blocking code.
August 25, 2024
To bootstrap Rust, no cost is too great.
August 13, 2024
I recently apperead on the “QnA With Friends” podcast, run by Irine.
March 30, 2024
async-task
is one of the most complicated crates in the smol
ecosystem. But, fundamentally, it’s just a future on the heap.
March 24, 2024
A common refrain is that threads can do everything that async
/await
can, but
simpler. So why would anyone choose async
/await
?
January 1, 2024
smol
just became a much easier choice to build web servers.