Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はHerokuでホストされているアプリを持っており、このアプリは1日に数回タスクを実行する必要があります。タスクは午前1時、2。午前5時、3。午前11時、4。午後8時)。
Herokuは、Schedulerと呼ばれるアドオンを提供しています。上記のタイムスキームでタスクを実行する方法はありますか?
スケジューラーは1時間ごとに実行できますが、現在の時間帯を確認する必要があります。
[1,5,11,20].include?(Time.now.hour)
実行したいタスクで、質問に従って午前1時、午前5時、午前11時、午後8時に実行します。