hi-nginx-1.4.2发布,多项重要更新
支持多种编程语言混合开发web应用的通用服务器hi-nginx-1.4.2已经发布了。 此次发布包含多项重要更新: 支持python2和3,通过编译选项--with-http-hi-python-version 删除boost.python依赖,优化python3兼容性,性能有所提高 支持lua和luajit,通过编译选项--with-http-hi-lua-version 为python专门定制了hi.py框架,单一入口,类似bottle或者flask一样,对性能有一定影响,但还是比bottle和flask快得多 为php7专门定制了类似hi.py的微型框架,单一入口,类似bottle或者flask,对性能没什么影响 hi.py示例: 1 from hi import hi 2 app =hi() 3 4 @app.route(r'^/test/?$',['GET','POST']) 5 @app.route(r"^/$",['GET']) 6 def hello_world(req,res,param): 7 res.header('Content-Type','text/plai...