Why does 12factor recommend not to daemonize processes?
问题 12factor recommends not to daemonize processes. What are the disadvantages of doing so? 回答1: They are looking not at the daemon process itself, but at managing that process and ensuring it's running properly. They cite instances of kludgey frameworks built around daemons where the daemon was not written with an eye towards that management, thus requiring an excess of resources to restart it, clean up after it, etc. They point out and recommend the use of system management facility software,