Hacker News new | ask | show | jobs
by smitty1e 1458 days ago
I'm not deep on Node, but this sounds like a GIL thing.
1 comments

It is, and it's a subinterpreters thing. Node has separate interpreters that run in worker threads but also share memory, which is the route Python is planning on taking.