运行 resque 时,如何在生产环境中的服务器上启动工作程序?
您通过 cron 作业启动该作品吗?该 cron 作业是否会使用 rake 调用该任务?
任何其他建议或使用模式都非常感谢。
当您启动工作程序时,它是保持运行等待状态还是每次都必须运行它们然后工作程序退出。
Do you launch the works via a cron job? And would that cron job just call the task using rake?
Any other suggestions or usage patterns greatly appreciated.
When you launch the worker, does it stay running waiting or do you have to run them each time and then the worker exits.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我让我的工作人员通过一个新贵脚本启动,然后在每次由 capistrano 部署后重新启动。这里还有另一个类似的问题,它还有很多其他方法...
如何在生产中部署 resque 工作人员?
I have my workers started via an upstart script which is then restarted after each deployment by capistrano. There's another similar question here which has a lot of other ways as well...
How to deploy resque workers in production?