|
|
|
|
|
by rich_sasha
1006 days ago
|
|
Python is surprisingly bad at parallelism, for a data or framing workhorse. What TFA doesn't say is that process pools are quite fragile, certainly on Mac and Windows, but Linux also. They rely on pickling which is also fragile. That said, asyncio works surprisingly well if what you want is non-blocking execution and are happy with 1 cpu. But no parallel speed up. |
|
I wish Python had similar solutions.