rq
rq copied to clipboard
Implemenent Periodic & Repeated Jobs similar to what rq-scheduler offers
As rq now offers scheduled jobs and a lot of functionality from rq-scheduler, please also implement Periodic & Repeated Jobs similar to what rq-scheduler offers.
I'm open to this, but before this is implemented, I'd also want RQ to be able to keep a history of results from job executions.
Any news about this feature ?
Since rq-scheduler seems not to be maintained anymore, this feature will be awesome.
For now if I want a periodic job I add a bunch of scheduled jobs with queue.enqueue_at And then I regularely fill the scheduled jobs list with a while loop. This is clearly not the best solution :)
I'll be happy to help.
In our case, what we do is to use the on_success
or on_failure
callbacks to re-schedule jobs once they are finished. In any case, to have something similar included by default on this library would be very helpful.