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)
プロセスにとって、デーモンであることは、無限ループを含むだけではありません。親プロセス (通常はシェル) が終了しても終了してはなりません。停止、開始、および再起動のためのインターフェイスをサポートする必要があります (そのプログラム ファイルが start|stop|restart パラメータで実行される場合)。それがあなたが言及した例です。
PSデーモンがすべきことのリストは完全ではありません。そのようなことがあることを示しているだけです。