Re: Any Django framework command to freeze/wait/notify ?

2011-01-05 Thread Justin
+1 for Celery. For Django integration, see django-celery: https://github.com/ask/django-celery -Justin On Jan 5, 2:21 am, vivek_12315 wrote: > Hi all, > > This is a common scenario which many of you have faced. > > Say, I created a simple view file, in which user

Re: Any Django framework command to freeze/wait/notify ?

2011-01-05 Thread Mo Mughrabi
Am not quite sure of your question, but I use celery to create jobs running in the background, queue them and get their status. http://celeryproject.org/ regards, On Wed, Jan 5, 2011 at 10:21 AM, vivek_12315 wrote: > Hi all, > > This is a

Any Django framework command to freeze/wait/notify ?

2011-01-04 Thread vivek_12315
Hi all, This is a common scenario which many of you have faced. Say, I created a simple view file, in which user uploads a file and does some processing at backend and after processing is finished I am rendering a html page with some processed result. My problem is that, there should be some