每当 gem 在 Rails 中使用时如何进行 cronjob 处理?
我们应该如何使用rails 3中的gem进行cronjob处理?我有一个 rake 任务,需要每 5 分钟运行一次,我该怎么做?
How should we use whenever gem in rails 3 for cronjob processing? i have one rake task which i need to run after every 5 min ,how can i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请访问以下链接,其中解释了如何配置和使用。
https://github.com/javan/whenever
http://railscasts.com/episodes/164-cron-in-ruby
根据您的问题,下面是运行 rake 任务的代码每 5 个 分钟。这应该位于 config/schedule.rb 文件中
Go through below link which explains how to configure and use.
https://github.com/javan/whenever
http://railscasts.com/episodes/164-cron-in-ruby
As per your question below is the code that runs rake task every 5 minutes. This should be in
config/schedule.rb
file