Job scheduler for a CB Django scaffold

Priority: Normal
Project ID: 6473
Project link: Sway
Request:

I’m already familiar with rabbitmq, but what is the preferred way to implement a job/task scheduler for a CB django scaffold?

For scheduled tasks we can manually enable them using Heroku’s scheduler, which works much like cron.

For a job runner we recommend celery or django-rq (resque). Both have their strengths and weaknesses so you’ll have to see which will be better for your use case.

Thanks will check these out