1
返回我有下面的代碼片段,使用多模塊:如何使queue.get儘可能快
import time
from multiprocessing import Process, Queue
q = Queue()
def feeder():
x=0
while True:
q.put(x)
time.sleep(1)
x+=1
p=Process(target=feeder).start()
while True:
print q.get()
現在q.get
打印每秒,爲新的數據到達隊列。我希望q.get
儘可能快地返回(即通過提出錯誤或通過返回無或通過其他方法)。
是的,我不知道我怎麼能錯過它。我想我專注於這些例子。謝謝 – yemu