|
|
|
|
|
by birdyrooster
2254 days ago
|
|
Stuff like aiomultiprocess is meant to make performant python easier to think about when you are writing and organizing your code (since async/yield is well adopted). It’s enables some great parallelism for cpython to get around the GIL and there are simple tricks to shard data to minimize memory duplication. |
|