|
|
|
|
|
by jvanderbot
1021 days ago
|
|
Async as a paradigm seems so against what GP was discussing. If I understood, and from my experience, we're talking more about concurrent execution with carefully-designed priorities, locks, and timing requirements. This is closer to the embedded / systems-level concurrency, if I understand it right. Are we really expecting a coroutine/ async style to just lift into this world? |
|
Your own work would be some CPU-intensive operations you can logically divide and conquer.
Others' work would be waiting for file I/O from the OS, waiting for a DB result set following a query, waiting for a gRPC response, etc.
Conceptually quite distinct, and there are demonstrated advantages and drawbacks to each. Right tool for right job and all that.