joeyh

joeyh at

Wow, I'd forgotten how bad threads are in most languages!
Threads in Python are so bad they might as well not be threads. They can be useful in some ways if you need something running concurrently but performance wise if not waiting on things, you're most likely going to have much slower code because of the way the GIL works. It's a fact of life in cpython...

Christopher Allan Webber at 2013-07-23T15:50:16Z