|
|
|
|
|
by ot
198 days ago
|
|
> can avoid or defer a lot of the expected memory allocations of async operations Is this true in realistic use cases or only in minimal demos? From what I've seen, as soon as your code is complex enough that you need two compilation units, you need some higher level async abstraction, like coroutines. And as soon as you have coroutines, you need to type-erase both the senders and the scheduler, so you have at least couple of allocations per continuation. |
|