search

Home  >  Q&A  >  body text

python multiprocessing 中的队列数据丢失的问题

这是我的代码

import multiprocessing

def f(q , id):
    data = q.get(block = True)
    while data != None:
        data = q.get(block = True)
        print "%d : data is %d" % (id , data)
    return

if __name__ == "__main__":
    q  = multiprocessing.Queue()
    p1 = multiprocessing.Process(target=f , args = (q,1))
    p2 = multiprocessing.Process(target=f , args = (q,2))
    for i in range(100):
        q.put(i,block = False)
    p1.start()
    p2.start()
    p1.join()
    p2.join()

当我试图用两个进程读取队列中的数据的时候,经常会有一部分数据丢失。尝试过加锁但是没用,不知道multiprocessing是否内置了锁的机制。

大家讲道理大家讲道理2910 days ago491

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-04-18 09:45:47

    Why do you need to execute data = q.get(block = True) immediately at the beginning of the f function?

    reply
    0
  • Cancelreply