|
|
|
|
|
by charcircuit
1010 days ago
|
|
async is not free. It will turn your code into a big state machine and each thing you await will likely create its own thread. There is simplicity in a avoiding that and having code that gets compiled to something that is straightforward and single threaded. |
|
Exercising judgement about when to use or shirk an abstraction is a lot of what being a software engineer is about.