DEV Community

Discussion on: Global Interpreter Lock (GIL) in Python

Collapse
 
juancarlospaco profile image
Juan Carlos • Edited

You can use Nim nim-lang.org that has no GIL,
because it wont have interpreter, I use it for Python and Frontend.
Cython cython.org also has something to skip GIL.
Nowadays even the ARM has like +8 cores, so is an interesting information.

Collapse
 
sharmapacific profile image
Prashant Sharma

Thanks @juan , let's keep sharing knowledge.