i think what you need is http://code.google.com/p/django-cron/

Also you may want to check out http://celeryq.org/ if you want to do
parallel processing,
distribute jobs to other computers to ease the web server load.

On Aug 18, 5:10 am, Andy <selforgani...@gmail.com> wrote:
> I have a Django application.
>
> One of my models looks like this:
>
>     class MyModel(models.Model):
>
>         def house_cleaning(self):
>         // cleaning up data of the model instance
>
> Every time when I update an instance of MyModel, I'd need to clean up
> the data N days later. So I'd like to schedule a job to call
>
>     this_instance.house_cleaning()
>
> N days from now.
>
> Is there any job queue that would allow me to:
>
>  - Integrate well with Django - allow me to call a method of
> individual model instances
>  - Only run jobs that are scheduled to run today
>  - Ideally handle failures gracefully
>
> Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to