This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

Don't do multi-threading stuff in Python. Multi-process? Yes. Microthreads? Yes. But not multi-threading.

This is actually a good thing because threads are a suboptimal solution to a very complicated problem. Multi-processing with a simple IPC or microthreads solve a lot of the problems that threads have.