hi-nginx-1.4.8 正式发布,新增一组命令

栏目: 软件资讯 · 发布时间: 7年前

内容简介:hi-nginx-1.4.8正式发布。 更新: nginx升级至1.14.0 升级hi-project脚本,创建工程更灵活方便 支持java 10 添加hi_lua_package_path 和 hi_lua_package_cpath 命令. 添加三个缓存控制命令:hi_need_kvdb,hi_kv...

hi-nginx-1.4.8正式发布。

更新

  1. nginx升级至1.14.0

  2. 升级hi-project脚本,创建工程更灵活方便

  3. 支持 java 10

  4. 添加hi_lua_package_path 和 hi_lua_package_cpath 命令.

  5. 添加三个缓存控制命令:hi_need_kvdb,hi_kvdb_size,hi_kvdb_expires

php例子:

require_once 'hi/servlet.php';
require_once 'hi/route.php';

class index implements \hi\servlet {

    public function handler(\hi\request $req, \hi\response $res) {
        $app = \hi\route::get_instance();
        $app->add('{^/$}', array('GET'), function ($rq, $rs, &$param) {
            $rs->content = 'hello,world';
            $rs->status = 200;
        });

        $app->add('{^/who/(?P<name>\w+)/?$}', array('GET'), function ($rq, $rs, &$param) {
            $rs->content = 'hello,'.$param['name'];
            $rs->status = 200;
        });

        $app->add('{^/phpinfo/?$}', array('GET'), function($rq, $rs, &$param) {
            ob_start();
            phpinfo();
            $rs->content = ob_get_contents();
            $rs->status = 200;
            ob_end_clean();
        });

        $app->add('{^/cache/?$}', array('GET'), function($rq, $rs, &$param) {
            $key = 'cache_test';
            $value = 0;
            if (array_key_exists($key, $rq->cache)) {
                $value = intval($rq->cache[$key]) + 1;
            }
            $rs->cache[$key] = $value;
            $rs->content = "$key : " . $value;
            $rs->status = 200;
        });
        $app->run($req, $res);
    }

}

doc:https://doc.hi-nginx.com/

github:https://github.com/webcpp/hi-nginx

介绍

它既是 web 服务器,也是 application 服务器。

它是 NGINX 的超集。

它性能强劲,易于开发,部署方便。

它支持多种语言混合开发 web 应用:

  • C++

  • Python

  • Lua

  • Java

  • PHP


【声明】文章转载自:开源中国社区 [http://www.oschina.net]


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

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

The Little MLer

The Little MLer

Matthias Felleisen、Daniel P. Friedman、Duane Bibby、Robin Milner / The MIT Press / 1998-2-19 / USD 34.00

The book, written in the style of The Little Schemer, introduces instructors, students, and practicioners to type-directed functional programming. It covers basic types, quickly moves into datatypes, ......一起来看看 《The Little MLer》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具