Ruby on Rails 3.1 - 如何每天动态填充 crontab / cronjob

发布于 2024-12-10 16:26:39 字数 266 浏览 0 评论 0原文

我有一个 ruby​​ 任务,每天从第三方下载一些数据。 根据这个下载的数据,我想更新 crontab。

例如,每天早上 9 点,我想决定当天的计划任务列表。

今天上午 9 点 - 我知道“任务 A”需要在下午 1 点和 2 点运行。因此,我需要插入下午 1 点和下午 2 点的 crontab。

明天上午 9 点 - 我会知道“任务 A”需要在下午 4 点运行。所以,我需要插入下午 4 点的 crontab。

我怎样才能做到这一点?有推荐的宝石吗?

I have a ruby task that downloads some data from a third party on a daily basis.
Based on this downloaded data, I want to update the crontab.

For instance, at 9 AM every morning, I want to decide the list of scheduled tasks for the day.

Today, 9 AM - I know that "TASK A" needs to run at 1 PM and 2 PM. So, I need to insert crontab for 1 PM and 2 PM.

Tomorrow, 9 AM - I will know that "TASK A" needs to run at 4 PM. So, I need to insert crontab for 4 PM.

How can I achieve this ? Any recommended gems ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怪我鬧 2024-12-17 16:26:39

我认为您需要查看每当 gem,并在初始值设定项文件中编写一个 Schedule.rb (它是每当配置文件)。之后,使用每当命令更新 crontab。

https://github.com/javan/whenever

http://railscasts.com/episodes/164-cron-in-ruby

I think you need to have a look at the whenever gem, and write a schedule.rb in the initializers file (it's the whenever config file). After that update the crontab with the whenever command.

https://github.com/javan/whenever

http://railscasts.com/episodes/164-cron-in-ruby

吃素的狼 2024-12-17 16:26:39
Using Whenever gem
# In rails 4
require File.expand_path('../..//config/environment.rb', __FILE__)

# This is your table by which you will get your new value 
bid_update = DynamicOfferTime.first

# Now Task As
every (bid_update.hour_value).hours do
  puts "This will repeat in every #{bid_update.hour_value} hour"
end
Using Whenever gem
# In rails 4
require File.expand_path('../..//config/environment.rb', __FILE__)

# This is your table by which you will get your new value 
bid_update = DynamicOfferTime.first

# Now Task As
every (bid_update.hour_value).hours do
  puts "This will repeat in every #{bid_update.hour_value} hour"
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文