How would you process tasks in django, say there is an event only to processed once daily, weekly, monthly. (besides cron)
Asked
Active
Viewed 265 times
3 Answers
5
What do you mean, besides cron? cron is exactly how you would do it.

Daniel Roseman
- 588,541
- 66
- 880
- 895
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