在Github上,Sanic第一句介绍语就是: "Sanic is a Flask-like Python 3.5+ web server that's written to go fast. " 到底有多Fast?有人给出这样一组对比测试结果: 这个测试结果可不可信不好说,但根据很多人的评价,Sanic在性能上确实比较强劲.尽管Sanic 被称作Flask-like,其中的坑还是很多的.性能强劲这一点非常诱人,不过性能强劲不一定就好用的. 那么?Sanic性能到底有多强劲?它和Fla…
1,Deploying(部署) 通过内置的websocket可以很简单的部署sanic项目,之后通过实例sanic.Sanic,我们可以运行run这个方法通过接下来的关键字参数 host (default "127.0.0.1"): Address to host the server on. 默认的主机ip是127.0.0.1 port (default 8000): Port to host the server on. 默认的端口是8000 debug (default Fals…
1,Custom Protocol:自定义协议 温馨提示:自定义协议是一个高级用法,大多数的读者不需要用到此功能 通过特殊的自定义协议,你可以改变sanic的协议,自定义协议需要继承子类asyncio.protocol,这个子类在sanic.run方法中传输关键字protocol协议 自定义协议的构造类从sanic中接收关键字参数. loop: an asyncio-compatible event loop.(循环:异步兼容事件循环) connections: a set to store p…