|
|
|
|
|
by dragonwriter
1458 days ago
|
|
> Why not just use multi processing? Multiprocessing provides parallelism up to what the machine supports, but no additional degree of concurrency, asyncio provides a fairly high degree of concurrency, but no parallelism. OF course, you can use them together to get both. https://github.com/omnilib/aiomultiprocess |
|