3

我正在寻找类似Heroku Scheduler的东西,但有可能每 5 分钟运行一次作业。

看起来 Heroku 支持Clockwork,但它不是很明显的天气,它像测功机一样计费,或者仅按作业的实际运行时间计费。

换句话说,我的工作可能每 5 分钟运行 15 秒,所以我正在寻找每天收费15 * 12 * 24秒(每天 72 分钟)的东西。

Heroku 有可能吗?

4

2 回答 2

0

Check our the hirefire gem. This will spin up a new dyno only when there is something to be done in Delayed Job or Resque. You can combine this with the Heroku Scheduler or Clockwork if you need to run jobs at specific intervals.

于 2012-10-15T14:54:31.440 回答
0

不确定这是否正是您所需要的,但您可以设置一个 cron 作业,以在预定时间运行。这将运行 rake 任务。

于 2012-10-15T09:38:25.777 回答