Python进程间通信Queue实例解析


Posted in Python onJanuary 25, 2018

本文研究的主要是Python进程间通信Queue的相关实例,具体如下。

1.Queue使用方法:

  • Queue.qsize():返回当前队列包含的消息数量;
  • Queue.empty():如果队列为空,返回True,反之False ;
  • Queue.full():如果队列满了,返回True,反之False;
  • Queue.get():获取队列中的一条消息,然后将其从列队中移除,可传参超时时长。
  • Queue.get_nowait():相当Queue.get(False),取不到值时触发异常:Empty;
  • Queue.put():将一个值添加进数列,可传参超时时长。
  • Queue.put_nowait():相当于Queue.get(False),当队列满了时报错:Full。

2.Queue使用实例:

来,上代码:

#!/usr/bin/env python3

import time
from multiprocessing import Process,Queue

q = Queue() #创建列队,不传数字表示列队不限数量
for i in range(11):
  q.put(i)

def A():
  while 1:
    try:
      num = q.get_nowait()
      print('我是进程A,取出数字:%d'%num)
      time.sleep(1)
    except :
      break

def B():
  while 1:
    try:
      num = q.get_nowait()
      print('我是进程B,取出数字:%d'%num)
      time.sleep(1)
    except :
      break

p1 = Process(target = A)
p2 = Process(target = B)
p1.start()
p2.start()

此程序是在队列中加入10个数字,然后用2个进程来取出。

运行结果:

我是进程A,取出数字:0
我是进程B,取出数字:1
我是进程A,取出数字:2
我是进程B,取出数字:3
我是进程A,取出数字:4
我是进程B,取出数字:5
我是进程B,取出数字:6
我是进程A,取出数字:7
我是进程B,取出数字:8
我是进程A,取出数字:9
我是进程B,取出数字:10

3.使用进程池Pool时,Queue会出错,需要使用Manager.Queue:

上代码

#!/usr/bin/env python3

import time
from multiprocessing import Pool,Manager,Queue

q = Manager().Queue()
for i in range(11):
  q.put(i)

def A(i):
  num = q.get_nowait()
  print('我是进程%d,取出数字:%d'%(i,num))
  time.sleep(1)
      

pool = Pool(3)

for i in range(10):
  pool.apply_async(A,(i,))

pool.close()
pool.join()

运行结果:

我是进程1,取出数字:0
我是进程0,取出数字:1
我是进程2,取出数字:2
我是进程4,取出数字:3
我是进程3,取出数字:4
我是进程5,取出数字:5
我是进程6,取出数字:6
我是进程7,取出数字:7
我是进程8,取出数字:8
我是进程9,取出数字:9

当把Manager().Queue()直接换成Queue(),可能会出现资源混乱,缺少进程。

4.主进程定义了一个Queue类型的变量,并作为Process的args参数传给子进程processA和processB,两个进程一个向队列中写数据,一个读数据。

import time
from multiprocessing import Process,Queue

MSG_QUEUE = Queue(5)

def startA(msgQueue):
  while True:
    if msgQueue.empty() > 0:
      print 'queue is empty %d' % (msgQueue.qsize())
    else:
      msg = msgQueue.get()
      print 'get msg %s' % (msg,)
    time.sleep(1)

def startB(msgQueue):
  while True:
    msgQueue.put('hello world')
    print 'put hello world queue size is %d' % (msgQueue.qsize(),)
    time.sleep(3)

if __name__ == '__main__':
  processA = Process(target=startA,args=(MSG_QUEUE,))
  processB = Process(target=startB,args=(MSG_QUEUE,))

  processA.start()
  print 'processA start..'

  processB.start()
  print 'processB start..'

其打印的结果如下:

C:\Python27\python.exe E:/outofmemory/test/queuetest/queuetest.py
processA start..
processB start..
queue is empty 0
put hello world queue size is 1
get msg hello world
queue is empty 0
queue is empty 0
put hello world queue size is 1
get msg hello world
queue is empty 0
queue is empty 0
put hello world queue size is 1

总结

以上就是本文关于Python进程间通信Queue实例解析的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
python获取远程图片大小和尺寸的方法
Mar 26 Python
python fabric实现远程部署
Jan 05 Python
深入理解Django中内置的用户认证
Oct 06 Python
python实现协同过滤推荐算法完整代码示例
Dec 15 Python
对Python3 序列解包详解
Feb 16 Python
Django视图扩展类知识点详解
Oct 25 Python
Python 函数绘图及函数图像微分与积分
Nov 20 Python
python批量修改xml属性的实现方式
Mar 05 Python
python高阶函数map()和reduce()实例解析
Mar 16 Python
使用TensorBoard进行超参数优化的实现
Jul 06 Python
Django-simple-captcha验证码包使用方法详解
Nov 28 Python
Python面向对象编程之类的概念
Nov 01 Python
Python操作Redis之设置key的过期时间实例代码
Jan 25 #Python
python编程使用selenium模拟登陆淘宝实例代码
Jan 25 #Python
python画出三角形外接圆和内切圆的方法
Jan 25 #Python
Python实现批量压缩图片
Jan 25 #Python
python生成圆形图片的方法
Mar 25 #Python
scrapy spider的几种爬取方式实例代码
Jan 25 #Python
scrapy爬虫完整实例
Jan 25 #Python
You might like
PHP PDOStatement::nextRowset讲解
2019/02/01 PHP
php使用curl模拟多线程实现批处理功能示例
2019/07/25 PHP
Thinkphp极验滑动验证码实现步骤解析
2020/11/24 PHP
学习ExtJS accordion布局
2009/10/08 Javascript
Jquery仿淘宝京东多条件筛选可自行结合ajax加载示例
2013/08/28 Javascript
JavaScript实现班级随机点名小应用需求的具体分析
2014/05/12 Javascript
jQuery插件制作之全局函数用法实例
2015/06/01 Javascript
详解AngularJS过滤器的使用
2016/03/11 Javascript
weebox弹出窗口不居中显示的解决方法
2017/11/27 Javascript
jQuery实现form表单序列化转换为json对象功能示例
2018/05/23 jQuery
es6数据变更同步到视图层的方法
2019/03/04 Javascript
React学习之JSX与react事件实例分析
2020/01/06 Javascript
JavaScript this指向相关原理及实例解析
2020/07/10 Javascript
[01:13:01]2018DOTA2亚洲邀请赛 4.4 淘汰赛 TNC vs VG 第三场
2018/04/05 DOTA
python 与GO中操作slice,list的方式实例代码
2017/03/20 Python
Python实现对百度云的文件上传(实例讲解)
2017/10/21 Python
python中eval与int的区别浅析
2019/08/11 Python
详解Matplotlib绘图之属性设置
2019/08/23 Python
Python如何使用Gitlab API实现批量的合并分支
2019/11/27 Python
python之列表推导式的用法
2019/11/29 Python
基于Python中isfile函数和isdir函数使用详解
2019/11/29 Python
解决Keras自带数据集与预训练model下载太慢问题
2020/06/12 Python
Win10下用Anaconda安装TensorFlow(图文教程)
2020/06/18 Python
基于Python模拟浏览器发送http请求
2020/11/06 Python
修复iPhone的safari浏览器上submit按钮圆角bug
2012/12/24 HTML / CSS
详解CSS3+JS完美实现放大镜模式
2020/12/03 HTML / CSS
DNA测试:Orig3n
2019/03/01 全球购物
大学生简单自荐信
2013/11/10 职场文书
中英文自我评价常用句型
2013/12/19 职场文书
男方父母婚礼答谢词
2014/01/25 职场文书
毕业实习评语
2014/02/10 职场文书
毕业生自荐信如何写
2014/03/24 职场文书
春节请假条
2014/04/11 职场文书
人事局接收函
2015/01/31 职场文书
2016年教师节贺卡寄语
2015/12/04 职场文书
Z-Order加速Hudi大规模数据集方案分析
2022/03/31 Servers