resque-scheduler
resque-scheduler copied to clipboard
A light-weight job scheduling system built on top of Resque
Should eliminate some basic boilerplating.
I'm trying to write a job that will be scheduled to run multiple times an hour. However, one issue I'm running into is knowing what time the job was queued...
Hi there, I'm hoping for some advice/best practice. My understanding is that people commonly load the schedule in an initializer, something like ```Resque.schedule = yaml_schedule``` We've just upgraded to Rails...
I have a non-persistent schedule with a job that has the following in it's configuration (there is not a `cron` config key): ``` ... every: ['1d', {first_at: Chronic.parse('04:31')}]` ... ```...
Wrap write operations in multi/exec blocks to prevent any possibilities of Redis being in an inconsistent state. It also has the added benefit of providing small optimizations by reducing the...
Since resque-scheduler is limtited to only one scheduler worker, how much horsepower does it have? I am developing an app that is going to handle hundreds of thousands of jobs...
Hi, The base class of the Lock constructor suggests the timeout is configurable: `@timeout = options[:timeout] || 60 * 3` However, in the locking module, there is no way to...
I'm having trouble getting my delayed jobs showing on resque-web. Looking back on past issues it looks like the reason is that at some point schedules and other data started...
hi, when I use `Resque.enqueue_at(10.seconds.from_now, SendMailJob, :my_id => id)` my job is correctly added to delayed job, then it is added to default queue, then I can see in resque-web...
I have a situation where ~80K dynamic jobs were created before we realized that this approach was not going to work (we're using a static schedule now that is much...