Search Results

5
votes

Daemon Threads Explanation

A simpler way to think about it, perhaps: when main returns, your process will not exit if there are non-daemon threads still running. A bit of advice: Clean shutdown is easy to get wrong w …
-3
votes

Speeding Up Python

The fact that you are concerned about performance suggests that maybe Python wasn't the best tool for the job. Python is slow. …