bobsr
bobsr

Reputation: 3955

Django task processing

How would you process tasks in django, say there is an event only to processed once daily, weekly, monthly. (besides cron)

Upvotes: 0

Views: 281

Answers (3)

sergzach
sergzach

Reputation: 6754

You can also use a very simple tool: django-cron (runs inside of Django application thread).

If you do this please see my answer: Django: Getting Django-cron Running

Upvotes: 2

iElectric
iElectric

Reputation: 5819

http://celeryproject.org/

Upvotes: 3

Daniel Roseman
Daniel Roseman

Reputation: 599630

What do you mean, besides cron? cron is exactly how you would do it.

Upvotes: 5

Related Questions