Re: Any job queue systems that integrates with Django & allow scheduling jobs by date?

2010-08-18 Thread tsmets
Andy, I think you need to look at http://code.google.com/p/django-command-extensions/ I have never used the create_jobs but I use extensievely the scripting possibility for my developpment & to prepare the json files for my unit testing... Rgds, \T, On Aug 18, 2:10 am, Andy wrote: > I have a

Re: Any job queue systems that integrates with Django & allow scheduling jobs by date?

2010-08-17 Thread Rohan Jain
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 wrote: > I have a Django application. > > One of my mo

Any job queue systems that integrates with Django & allow scheduling jobs by date?

2010-08-17 Thread Andy
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 schedul