Hacker News new | ask | show | jobs
by __jem 1073 days ago
https://en.cppreference.com/w/cpp/language/coroutines

But highly doubt you need anything like async/await for this kind of application. In fact, I'd go as far as to say async/await is almost never needed except for building networked services with truly massive performance demands.

1 comments

If you genuinely have massive performance demands, stay far away from coroutines. For whatever reason the approach C++ took makes them incredibly memory hungry and inefficient.