Sanic框架中的非阻塞请求

时间:2017-02-18 18:31:03

标签: python python-asyncio sanic

我正在尝试Sanic并运行Hello World应用程序,除非我在请求处理程序中添加了一个睡眠:

@app.route("/")
async def test(request):
    time.sleep(5)
    return json({"hello": "world"})

然而,当我运行它时,它仍会阻止每个请求:

$ python app.py
2017-02-18 19:15:22,242: INFO: Goin' Fast @ http://0.0.0.0:8000
2017-02-18 19:15:22,245: INFO: Starting worker [15867]

在两个不同的终端中:

$ time curl http://0.0.0.0:8000/
{"hello":"world"}
real    0m5.009s
user    0m0.003s
sys     0m0.001s

$ time curl http://0.0.0.0:8000/
{"hello":"world"}
real    0m9.459s
user    0m0.000s
sys     0m0.004s

我认为Sanic的想法是能够异步处理所有请求而不是阻塞,直到一个完成处理下一个请求。我在这里错过了什么吗?

1 个答案:

答案 0 :(得分:13)

time.sleep(5)替换为:

 await asyncio.sleep(5)