python 进程 进程池 进程间通信实现解析

作者:南鱼羁荒渡 时间:2022-07-05 07:38:28 

1.python 中创建进程的两种方式:


from multiprocessing import Process
import time
def test_():
 print '-----test-----'
if __name__ == '__main__':
 p = Process(target=test_)
 p.start()
 while True:
   print '--main--'

'''1.通过process 类创建一个进程对象,然后start即可开启进程, test
test_函数是进程实现的功能'''

from multiprocessing import Process
import time
class MyNewProcess(Process):
  def run(self):
    print '------run-------'
if __name__ == '__main__':
  p = MyNewProcess()
  p.start()
  print '---main-----'
'''2.通过类似继承process  子类中必须有run 方法 里边实现 进程功能
创建对象之后 调用start'''

2.进程池


from multiprocessing import Pool
from time import sleep
import os
def func(num):
 for i in range(3):
   print '%s %s' %(os.getpid(),num) #
   sleep(2)
def main():
 pool = Pool(3)
 for i in range(3, 6):
   res = pool.apply_async(func, (i,))
 pool.close()
 pool.join()
if __name__ == '__main__':
 main()

3.进程间通信


'''python 进程间通信   Queue '''

'''1.Queue使用方法
 1.Queue.qsize(): 返回当前队列包含的消息数量
 2.Queue.empty(): 如果队列为空 返回True 反之 False
 3.Queue.full(): 如果队列满了返回True 反之 False
 4.Queue.get():  获取队列中一条消息 然后将其从队列中移除 可传参数 超市时长
 Queue.get_nowait(): 相当于 Queue.get(False) 取不到值 触发异常
 Queue.put(): 将一个值添加到数列 可传参数 超时时长
 Queue.put_nowait():相当于 Queue.get(False) 当队列满时 报错
'''
from multiprocessing import Process, Queue
import time
q = Queue() # 创建队列
for i in range(10):
 q.put(i)    
def test_a():
   try:
     while True:
       num = q.get_nowait()
       print '我是进程a 取出数字为:%s'%num
       time.sleep(1)
   except Exception, e:
     print e
def test_b():
 try:
   while True:
     num = q.get_nowait()
     print '我是进程b 取出数字是:%s'%num
     time.sleep(1)
 except Exception, e:
   print e
if __name__ == '__main__':
 p1 = Process(target=test_a)
 p2 = Process(target=test_b)
 p1.start()
 p2.start()

至此 简单得使用已经结束

来源:https://www.cnblogs.com/nanyu/p/11394739.html

标签:python,进程,池,通信
0
投稿

猜你喜欢

  • sql索引失效的情况以及超详细解决方法

    2024-01-21 09:25:30
  • python中numpy 常用操作总结

    2021-01-10 05:01:57
  • Python random模块(获取随机数)常用方法和使用例子

    2023-12-27 18:09:06
  • centos 6.5下 mysql-community-server. 5.7.18-1.el6安装

    2024-01-15 14:54:26
  • Python实现常见数据格式转换的方法详解

    2023-04-16 03:48:16
  • idea连接SQL Server数据库的详细图文教程

    2024-01-14 05:32:54
  • asp金额大小写转换完全无错版

    2007-09-26 09:38:00
  • 详解Python描述符的工作原理

    2022-03-16 19:02:59
  • Python matplotlib如何简单绘制不同类型的表格

    2021-10-16 12:23:48
  • MYSQL必知必会读书笔记第五章之排序检索数据

    2024-01-27 10:08:33
  • DevOps,CI,CD,自动化简述

    2022-06-22 06:47:27
  • keras 实现轻量级网络ShuffleNet教程

    2023-06-27 05:19:26
  • PyCharm配置mongo插件的方法

    2023-08-16 19:37:05
  • vue中iframe的使用及说明

    2024-05-13 09:37:25
  • mysql 单机数据库优化的一些实践

    2024-01-15 19:01:25
  • arcgis使用Python脚本进行批量截图功能实现

    2021-04-25 03:40:05
  • 在Windows系统上搭建Nginx+Python+MySQL环境的教程

    2024-01-24 08:04:40
  • 基于Python实现帕累托图的示例详解

    2022-06-28 05:48:00
  • Javascript 注册事件浅析

    2024-04-28 10:20:22
  • python 视频下载神器(you-get)的具体使用

    2023-03-18 19:30:58
  • asp之家 网络编程 m.aspxhome.com