|
|
|
|
|
by PaulDavisThe1st
594 days ago
|
|
> There are a few processes in the bot that are especially latency sensitive, which we have tuned the nice value for. This immediately signifies some level of "does not understand how this stuff works". Latency sensitive (audio or other) tasks need to be in the SCHED_RR or SCHED_FIFO scheduling class, which nice(1) has no effect on. Conversely, using nice(1) on a SCHED_OTHER task is also unlikely to work, given that nice only impacts scheduling decisions and cannot provide RT-like behavior. |
|