|
|
|
|
|
by AndrewGaspar
1232 days ago
|
|
I think async concurrent code is just much easier to reason about, regardless of threading. Also, for intra-request concurrency (e.g. i need to grab data from N different sources to complete this request), it's much easier to arrange for that work to be done concurrently. Also easier to implement highly responsive applications with async vs. threading. |
|
If one was to benchmark cpp coroutines vs rust async would the performance difference ever pay off?