Hacker News new | ask | show | jobs
by ilhackernews 4509 days ago
This sounds relativly simple. I would use Celery for this. would recommend reading this tutorial http://sebastiandahlgren.se/2012/11/13/using-celery-for-asyn...

It's pretty simple and straight forward

1 comments

Thanks. Google returned lot of pages suggesting using celery for async processing. I also read the the tutorial you have provided a link to. Using celery makes sense for deferring processing to another process/time. I'm still trying to figure out if I can get away with not returning any response in my view's page request process function (and return something that says will post a response later....hold the original http request).