0

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

bobsr
  • 3,879
  • 8
  • 30
  • 37

3 Answers3

5

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

Daniel Roseman
  • 588,541
  • 66
  • 880
  • 895
3

http://celeryproject.org/

iElectric
  • 5,633
  • 1
  • 29
  • 31
2

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

Community
  • 1
  • 1
sergzach
  • 6,578
  • 7
  • 46
  • 84