hi-nginx不仅让python web 应用跑得飞快,而且让相关开发变得简单敏捷。
关于hi-nginx的安装,请参考:https://www.cnblogs.com/hi-nginx/p/8622561.html
人们常说flask框架又快又好。但是更hi-nginx比起来,还是太慢。比如flask的最小应用是这样的:
from flask import Flask
app = Flask(__name__) @app.route('/')
def hello_world():
return 'Hello World!' if __name__ == '__main__':
app.run()
但是hi-nginx的最小python应用还要简单些:
if hi_req.uri()=='/test.py':
hi_res.content('hello,world')
hi_res.status(200)
当然,你也可以把最小应用写的更复杂些,,比如这样:
def hello_world():
hi_res.content('hello,world')
hi_res.status(200) def run():
if hi_req.uri()=='/':
hello_world() if __name__ == '__main__':
run()
应用写完了,怎样访问呢?很简单,在hi-nginx配置文件里这样写就可以了:
server {
listen 8080;
server_name localhost; location / {
hi_need_cache off;
hi_python_script python/index.py;
}
}
reload或者restart nginx,然后访问http://localhost:8080/即可看到hello,world的问候了。
现在用siege来测试下这个最小应用的性能:
siege -c 1000 -r 100 -b http://127.0.0.1:8080/
是不是很满意!