Lets say I have a django project running on uwsgi emperor mode, with this config
processes = 4
Running on a dual core cpu with hyperthreading enabled, does that mean I can have [close to] true parallelism of processing 4 requests at the same time?
Would it have significant performance advantage over a dual core cpu without hyperthreading enabled?
And how about this config on CPU with/without hyperthreading?
processes = 4
threads = 8
enabled-threads = true