zoukankan      html  css  js  c++  java
  • 多进程Multiprocessing模块

    多进程 Multiprocessing 模块

    先看看下面的几个方法:

    • star() 方法启动进程,
    • join() 方法实现进程间的同步,等待所有进程退出。
    • close() 用来阻止多余的进程涌入进程池 Pool 造成进程阻塞。

    参数:

    • target 是函数名字,需要调用的函数
    • args 函数需要的参数,以 tuple 的形式传入

    用法:

    multiprocessing.Process(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None)

    写一个的例子:

    复制代码
    from multiprocessing import Pool
    import os,time
    
    
    def pr(str):
        print("The " + str + " is %s" %(os.getpid()))
        time.sleep(1)
        print("The " + str + " is close")
    
    
    if __name__ == "__main__":
    
        print('-------------------------------')
        print("the current pid: "+ str(os.getpid()))
        # 默认为自己电脑的核数
        p = Pool(2)
        for i in range(5):
            p.apply_async(pr,args=('xdxd',))
        p.close()
        p.join()
        print("----------close-----------------")
    复制代码

    通过结果可以看出,是2个进程同时启动,同时启动的进程数与pool中设置的数量和自己电脑的核数有关

    结果:

    复制代码
    -------------------------------
    the current pid: 9562
    The xdxd is 9563
    The xdxd is 9564
    The xdxd is close
    The xdxd is close
    The xdxd is 9563
    The xdxd is 9564
    The xdxd is close
    The xdxd is close
    The xdxd is 9563
    The xdxd is close
    ----------close-----------------
    复制代码
  • 相关阅读:
    php gettext 注释
    autobench 测试笔记
    Android 常用布局视图
    路由器插入广告实现
    kafka 搭建与使用
    复制虚拟机之后,互相ping不通
    docker运行镜像提醒WARNING: IPv4 forwarding is disabled. Networking will not work.
    docker容器简单常用操作
    mongo通过URL连接IDEA
    gradle基础应用
  • 原文地址:https://www.cnblogs.com/anita-harbour/p/9315579.html
Copyright © 2011-2022 走看看