7
votes
Are locks unnecessary in multi-threaded Python code because of the GIL?
The Global Interpreter Lock prevents threads from accessing the interpreter simultaneously (thus CPython only ever uses one core). However, as I understand it, the threads are still interr …
0
votes
How to make Ruby or Python web sites to use multiple cores?
For Python, the PyProcessing project allows you to program with processes much like you would use threads. It is included in the standar …
