标签:
Queue:是一个消息队列。队列的长度可为无限或者有限。
用于父子进程通信,两个没有关系的进程不能使用Queue通信。
使用使用示例:from multiprocessing import Queue。
进程之间同步:lock.acquire
当多个进程同时对队列写的时候需要进行同步,保证一个时刻只有一个进程对队列进行写操作。
进程间的通信-Queue
原文地址:http://www.cnblogs.com/pylab/p/4525940.html