Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题:这种创建 python-daemon 脚本的方法和这个有什么区别:
while(True): do_something() sleep(10)
对于一个进程来说,作为一个守护进程不仅仅意味着包含一个无限循环。它不应在其父进程(通常是 shell)终止时终止。它应该支持停止、启动和重新启动的接口(当它的程序文件使用 start|stop|restart 参数执行时)。这就是你提到的例子所做的。
PS我的守护进程应该做的事情列表并不完整,它只是表明有这样的事情。