python 进程间通信Queue
Posted yitiaodahe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 进程间通信Queue相关的知识,希望对你有一定的参考价值。
- Queue的使用
Queue.qsize() #返回当前队列包含的消息数量
Queue.empty() #如果队列为空,返回True,反之False
Queue.full() #如果队列满了,返回True,反之False
Queue.get([block[, timeout]]) #获取队列中的一条消息,然后将其从列队中移除,block默认值为True,没取到会阻塞
#如果block值为False,消息列队如果为空,则会立刻抛出"Queue.Empty"异常
Queue.get_nowait() #相当Queue.get(False)
Queue.put(item,[block[, timeout]]) #将item消息写入队列,block默认值为True,
#消息列队如果已经没有空间可写入,此时程序将被阻塞(停在写入状态),直到从消息列队腾出空间为止
#如果block值为False,消息列队如果没有空间可写入,则会立刻抛出"Queue.Full"异常
Queue.put_nowait(item) #相当Queue.put(item, False)
- 实例
Process
from multiprocessing import Process, Queue import os, time, random # 写数据进程执行的代码: def write(q): for value in [‘A‘, ‘B‘, ‘C‘]: print(‘Put %s to queue...‘ % value) q.put(value) time.sleep(random.random()) # 读数据进程执行的代码: def read(q): while True: if not q.empty(): value = q.get(True) print(‘Get %s from queue.‘ % value) time.sleep(random.random()) else: break if __name__==‘__main__‘: # 父进程创建Queue,并传给各个子进程: q = Queue() pw = Process(target=write, args=(q,)) pr = Process(target=read, args=(q,)) # 启动子进程pw,写入: pw.start() # 等待pw结束: pw.join() # 启动子进程pr,读取: pr.start() pr.join() # pr进程里是死循环,无法等待其结束,只能强行终止: print (‘所有数据都写入并且读完‘)
Pool
#coding=utf-8 #修改import中的Queue为Manager from multiprocessing import Manager,Pool import os,time,random def reader(q): print("reader启动(%s),父进程为(%s)"%(os.getpid(),os.getppid())) for i in range(q.qsize()): print("reader从Queue获取到消息:%s"%q.get(True)) def writer(q): print("writer启动(%s),父进程为(%s)"%(os.getpid(),os.getppid())) for i in "dongGe": q.put(i) if __name__=="__main__": print("(%s) start"%os.getpid()) q=Manager().Queue() #使用Manager中的Queue来初始化 po=Pool() #使用阻塞模式创建进程,这样就不需要在reader中使用死循环了,可以让writer完全执行完成后,再用reader去读取 po.apply(writer,(q,)) po.apply(reader,(q,)) po.close() po.join() print("(%s) End"%os.getpid())
以上是关于python 进程间通信Queue的主要内容,如果未能解决你的问题,请参考以下文章