|
|
|
|
|
by mtanski
3901 days ago
|
|
You could probably get decent performance for a similar application written in another language (then Python) using 175 threads. 175 threads is not that big of deal, the OS can manage it pretty well. It's only when you start talking about thousands of individual connections and thousands of threads that you need to worry. Python sucks at that at low number of threads (GIL). |
|
[Edit] I'm a assuming a CPU with 8 cores, not some 64 core monster.