无法在django中创建真正的异步子进程

时间:2013-12-18 01:26:12

标签: python django asynchronous subprocess

所以我有一个观点,我可以发送一个Http帖子或得到。 post处理程序设置为异步创建子进程,然后返回一个字符串。问题是它似乎创建了进程,继续执行代码,但是在返回响应之前挂起并等待子进程完成。我怎样才能让它真正异步?

def post(self, request):
create_async_request()
return HttpResponse("done")

def create_async_request():
    p = Popen(['ping','localhost','-c','15']) #something that I know will take a couple secs

0 个答案:

没有答案