|
|
Django JITS (Just In Time Scheduler)
A scheduling system for django.
Instead of a traditional scheduler which has a main loop, usually in a thread, which polls for scheduled tasks this scheduler's polls are triggered by each new request. This way scheduled events are fired as often as needed to retrieve new data that may be needed for local content adjustment without the overhead of another thread and polling loop.
If you already have setuptools installed you can very simply:
sudo easy_install jits
For more in depth information on installing setuptools and jits and configuring jits for your Django project refer to InstallAndConfig.
To checkout the source:
svn checkout http://django-jits.googlecode.com/svn/trunk/ django-jits
