python 如何设置守护进程
程序员文章站
2022-06-22 11:24:56
上一篇文章 介绍 ,本文继续学习设置守护进程的对程序的影响。(python大牛可以绕行)我们通过两个例子说明# encoding: utf-8"""author: yangyi@youzan.comt...
上一篇文章 介绍 ,本文继续学习设置守护进程的对程序的影响。(python大牛可以绕行)
我们通过两个例子说明
# encoding: utf-8 """ author: yangyi@youzan.com time: 2019/7/30 11:20 am func: """ from multiprocessing import process import os import time def now(): return str(time.strftime('%y-%m-%d %h:%m:%s', time.localtime())) def func_1(name): print(now() + ' run child process %s ,pid is %s...' % (name, os.getpid())) time.sleep(2) print(now() + ' stop child process %s ,pid is %s...' % (name, os.getpid())) def func_2(name): print(now() + ' run child process %s , pid is %s...' % (name, os.getpid())) time.sleep(4) print(now() + ' hello world!') print(now() + ' stop child process %s , pid is %s...' % (name, os.getpid())) if __name__ == '__main__': print ('parent process %s.' % os.getpid()) p1 = process(target=func_1, args=('func_1',)) p2 = process(target=func_2, args=('func_2',)) print now() + ' process start.' p1.daemon = true #设置子进程p1为守护线程 p1.start() p2.start() print now() + ' process end .'
结果显示
启动了子进程 run child process func_1 但是没有 func_1 的结束提示。随着主进程的结束而结束。
if __name__ == '__main__': print ('parent process %s.' % os.getpid()) p1 = process(target=func_1, args=('func_1',)) p2 = process(target=func_2, args=('func_2',)) print now() + ' process start.' p2.daemon = true #设置子进程p2为守护线程 p1.start() p2.start() print now() + ' process end .'
结果显示
启动了子进程func_1,而func_2 没有启动便随着主进程的结束而结束。
总结
对于进程或者子线程设置join() 意味着在子进程或者子线程结束运行之前,当前程序必须等待。当我们在程序中运行一个主进程(主线程),然后有创建多个子线程。主线程和子线程各自执行。当主线程想要退出程序时会检查子线程是否结束。如果我们设置deamon属性为true ,不管子线程是否结束,都会和主线程一起结束。
-the end-
以上就是python 如何设置守护进程的详细内容,更多关于python 守护进程的资料请关注其它相关文章!