有没有人知道在多处理中创建Process或Pool时设置好处值的简单方法?
答案 0 :(得分:14)
os.nice(increment)
Add increment to the process’s “niceness”. Return the new niceness. Availability: Unix.
来自http://docs.python.org/library/os.html#os.nice。
是否有理由不能在子进程中调用它?
答案 1 :(得分:0)
尝试导入ctypes模块并查找pthread_schedparam()或SetThreadPriority()(Linux / Windows)。