There are no settings to affect the scheduler save GOMAXPROCS. Check that none
of your code or your dependencies are calling runtime.GOMAXPROCS.
If that doesn't help, try profiling your application, the cpu or block profile
might tell you where your program is hitting a point of contention.
--
I have an app with more that 30 threads which takes 4 of 4 cores on my i5
laptop. Meanwhile when I run the app on 2xE2630 I see only 2 processes and
100% utilization of 2 cores.
Is it necessary to apply certain settings to let an application with with
multicore architecture?
--
You received t