如何在 ruby 中控制多个守护进程?
如何通过“Daemons gem”启动多个进程(将运行相同的脚本),以及如何根据需要停止其中一个进程?谢谢!
How to start many processes(will run the same script) by "Daemons gem", and how to stop one of them as I want ? thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑使用 bluepill 或 god 来完成此任务。两者都在内部使用守护进程,并且都提供了一种很好的 ruby 方式来定义进程并监视它们。
Consider using bluepill or god for this task. Both use daemons internally, and both provide a nice ruby way of defining your processes and monitoring them.