Any way to get cargo to only build single threaded? Working on a somewhat low powered computer and also running netflix.
Conversation
Using SCHED_IDLE via `schedtool -D` often works well without limiting it to one core. It always makes sense to at least use SCHED_BATCH for that kind of background work. If often speeds it up while reducing the impact on latency elsewhere.


