Hacker News new | ask | show | jobs
by lclarkmichalek 3979 days ago
He could just run the code in multiple process. Enough with the GIL bullshit.
1 comments

That would be inefficient because you'd need to allocate extra stack, process datastructures, context switching, etc.
From experience, when you can, it's just better spawning multiple processes over doing multithreading.