构建一个集成我的 Rails 环境的 ruby 守护进程
我需要构建一个 ruby 守护程序,它将使用 freeswitcher eventmachine 库进行 freeswitch。
几天来,我在网上寻找构建 ruby 守护程序的最佳解决方案,该守护程序将集成我的 Rails 环境,特别是我的活动记录模型。我看过优秀的 Ryan Bates 截屏视频(第 129 集自定义守护进程),但我不确定这是否仍然是一个实际的解决方案。
我该如何以良好的方式做到这一点?
I need to build a ruby daemon that will use the freeswitcher eventmachine library for freeswitch.
Since few days I as looking the web for the best solution to build a ruby daemon that will integrate my rails environment, specailly my active record models. I've take a look to the excellent Ryan Bates screencast (episodes 129 custom daemon) but I'm not sure that is still an actual solution.
How do I do that in a good way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我一直为我的 Rails 环境构建守护进程。守护进程 gem 确实解决了所有的工作。作为示例,这里有一个从我最新的 Rails 应用程序(script/yourdaemon)中提取的小模板。我使用 eventmachine gem,但想法是相同的:
这为您提供了所有常用的脚本/您的守护进程 [run|start|stop|restart],并且您可以在“--”之后将参数传递到守护进程。在生产中,您需要使用 god 或 monit 来确保守护进程在死机时重新启动。玩得开心!
I build daemons for my rails environments all the time. The daemons gem really takes all the work out of it. Here's a little template extracted from my latest rails app (script/yourdaemon), as an example. I use the eventmachine gem, but the idea is the same:
This gives you all the usual script/yourdaemon [run|start|stop|restart], and you can pass arguments into the daemon after a "--". In production you'll want to use god or monit to make sure the daemon gets restarted if it dies. Have fun!