resque-scheduler

1 · · Aug. 25, 2021, 9:31 a.m.
resque-scheduler A light-weight job scheduling system built on top of Resque Resque-scheduler is an extension to Resque that adds support for queueing items in the future. Job scheduling is supported in two different ways: Recurring (scheduled) and Delayed. Scheduled jobs are like cron jobs, recurring on a regular basis. Delayed jobs are resque jobs that you want to run at some point in the future. The syntax is pretty explanatory: Resque.enqueue_in(5.days, SendFollowupEmail, argument) # runs a...