Christopher Allan Webber

Christopher Allan Webber at

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...