本文介绍了为进程指定特定的CPU-python multiprocessing的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将Redis用作多处理设置中生产者/消费者关系的队列.
I am using Redis as my queue for a producer/consumer relationship in a multiprocessing setup.
我的问题是我的生产者使我的消费者超负荷,然后偷了它的CPU.
My problem is that my producers are overloading my consumer then stealing it's CPU.
我的问题是,我可以在此设置中将整个处理器分配给特定的功能/过程(即消费者)吗?
My question, can I allocate an entire processor to specific function/process (IE: the consumer) in this setup.
推荐答案
Python并非开箱即用.也是特定于OS的.在Linux上进行操作时,请参见以下答案: https://stackoverflow.com/a/9079117/4822566
It's not something Python does out of the box. Is also somewhat OS-specific. See this answer on doing under Linux: https://stackoverflow.com/a/9079117/4822566
这篇关于为进程指定特定的CPU-python multiprocessing的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!