Reputation: 3955
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
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
Reputation: 599630
What do you mean, besides cron? cron is exactly how you would do it.
Upvotes: 5