I have a django web application which creates and saves jobs in a database. For every job I have to send email and export data to another system. I want to make it asynchronously.
What is the recommended way to do it? - It have to be reliable (no jobs missed). - There have to be easy way to find (log) if something goes wrong. - I want to be able to easy add more workers that will process the jobs. - May be it will be better if job queue is the same database table, so I can easy cancel jobs by simply changing their status in database? - May be it will be better if the solution is somehow related to django framework? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.