How does django-cron work?

The usual approach to cron jobs with the django site will be to use cron to periodically run custom control commands.

But I found this http://code.google.com/p/django-cron/

How does it work without requiring cron? What causes him to poll?

If it simply sets the address for an HTTP request that periodically hits, what if the task takes a long time, will the server time out?

+5
source share
2 answers

, Django , , . 5 ( ), , - , , .

+4

Timer, - ( , settings.py), execute django-cron.

+6

All Articles