Python队列放置数据

时间:2017-06-08 13:36:50

标签: python python-2.7 multiprocessing

我正在使用python多处理队列。队列在主进程中创建,子进程从中获取。但是,在发送SIGINT之前,主进程中的所有数据都不会传递到队列。

主要流程

log_q = Queue()

子流程

while True:
     msg = log_q.get()
     # log the msg

0 个答案:

没有答案