ActiveJob provides a great interface to the various common background job processing libraries and I think has been a great addition to rails. Ideally it should allow you swap out the queue adapter without any change to your application code being needed at all.
One thing I think that’s missing for that to be possible though is ActiveJob scheduling. Their is: GitHub - JustinAiken/active_scheduler: Resque Scheduling for ActiveJob but that only supports a single queue backend as of now.
Any thoughts on adding generic interface for this to rails core?