Re: Delegating a async job from a django view

2011-08-25 Thread Andre Terra
Celery is really all you need. IIRC, you'll have to install celery, django-celery, setup a broker backend (which handles the task dispatching), and a result backend (i.e. where you'll get results from your tasks). This means you'll have to run a celery server and quite possibly a separate server

Re: Delegating a async job from a django view

2011-08-25 Thread Thorsten Sanders
https://github.com/ask/django-celery Take a look at that, it should be able to do what you want, though never used it myself yet. On 25.08.2011 09:24, Amit Sethi wrote: What is the best solution for delegating a long time taking job from a django view. Basically i wish to query a few web api

Delegating a async job from a django view

2011-08-25 Thread Amit Sethi
What is the best solution for delegating a long time taking job from a django view. Basically i wish to query a few web api , analyze and then create a report . The report is not to be created in a sync manner and can be sent at a later time . But it will have a web interface to decide a few factor