hi-nginx-1.0.3 发布,多语言通用服务器

栏目: 服务器 · Nginx · 发布时间: 7年前

内容简介:hi-nginx-1.0.3 发布,多语言通用服务器

hi-nginx -1.0.3 已经发布。

此次更新主要内容如下:

  • 新增 lua 语言支持

  • 统一并标准化c++,python.lua开发接口

hi-nginx是基于nginx最新版开发的多语言通用服务器,它不仅继承了nginx的全部功能,100%兼容nginx,而且支持多种语言混合开发web应用。性能强劲,易于开发,部署方便。

目前,hi-nginx支持混合使用c++和 python 以及lua同时进行web应用开发,而无需其他后端应用服务器。hi-nginx本身就合并了后端应用服务器的功能。

hi-nginx还提供两个基于tengine和openresty的分支版本。

更多使用说明请移步:

c++ 例子:

#include "servlet.hpp"
namespace hi{
class hello : public servlet {
    public:

        void handler(request& req, response& res) {
            res.headers.find("Content-Type")->second = "text/plain;charset=UTF-8";
            res.content = "hello,world";
            res.status = 200;
        }

    };
}

extern "C" hi::servlet* create() {
    return new hi::hello();
}

extern "C" void destroy(hi::servlet* p) {
    delete p;
}

python例子:

            location = /pyecho {
                hi_python_content "hi_res.status(200)\nhi_res.content('hello,world')" ;
            }
            location ~ \.py$  {
                hi_python_script python;
            }

lua例子:

            location = /luaecho {
                hi_lua_content "hi_res:status(200)\nhi_res:content('hello,world')" ;
            }
            location ~ \.lua$  {
                hi_lua_script lua;
            }

ab hello,world简单压力测试比较:

hi-nginx-1.0.3 发布,多语言通用服务器

hi-nginx-1.0.3 发布,多语言通用服务器

hi-nginx-1.0.3 发布,多语言通用服务器

hi-nginx-1.0.3 发布,多语言通用服务器


以上所述就是小编给大家介绍的《hi-nginx-1.0.3 发布,多语言通用服务器》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

XMPP

XMPP

Peter Saint-Andre、Kevin Smith、Remko TronCon / O'Reilly Media / 2009-5-4 / USD 39.99

This practical book provides everything you need to know about the Extensible Messaging and Presence Protocol (XMPP). This open technology for real-time communication is used in many diverse applicati......一起来看看 《XMPP》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试