Closed robinetmiller closed 2 years ago
If a dev wants to manage the task queue with an outside system (cron, monit, etc) then Procrastinator should provide a short script like delayed_job's start-stop script.
cron
monit
delayed_job
Probably use Process.daemonize
Process.daemonize
What about stopping/starting each queue individually?
This is now handled by the importable rake tasks in 1.0.0
If a dev wants to manage the task queue with an outside system (
cron
,monit
, etc) then Procrastinator should provide a short script likedelayed_job
's start-stop script.