Re: python - handling HTTP requests asynchronously

2016-05-08 Thread Avraham Serour
so it seems that what you need is not to handle http requests asynchronously, but to process async jobs requested by http. if that is the case celery is a popular option and relatively easy to setup, I personally would use it for such things. buton the other hand you are saying that the task in ha

python - handling HTTP requests asynchronously

2016-05-06 Thread luke lukes
Hi everyone, I need to generate a PDF report for each entry of a django queryset. There'll be between between 30k and 40k entries. The PDF is generated through an external API. Since currently is generated on demand, this is handled synchronously via an HTTP request/response. That will be dif