通用服务器 hi-nginx-v1.2.3 发布,开始支持 PHP

栏目: PHP · 发布时间: 6年前

内容简介:通用服务器 hi-nginx-v1.2.3 发布,开始支持 PHP

通用服务器hi-nginx-v1.2.3已经发布了。

主要更新:

  • 实现 PHP 7+开发支持

用法:

            location ~ \.php$  {
                hi_php_script php;
            }
<?php

require_once 'hi/servlet.php';

class hello implements \hi\servlet {

    public function handler(\hi\request &$req, \hi\response &$res) {
        $res->content = 'hello,world';
        $res->status = 200;
    }

}

详见

  1. php/hi/request.php,

  2. php/hi/response.php

  3. php/hi/servlet.php

压力测试:

笔记本:i5,双核,4 worker process

ab -c1000 -n 500000 -k http://localhost/hello.php

hi-nginx:

location ~ \.php$ {
		#rewrite ^/(.*)\.phplus$ /$1.php break;
		hi_need_cache off;
		hi_cache_expires 1s;
		hi_need_headers on;
		hi_need_session on;
		hi_need_cookies on;
		hi_session_expires 300s;
		hi_php_script php;
	}
Server Software:        nginx/1.13.7
Server Hostname:        localhost
Server Port:            80

Document Path:          /hello.php
Document Length:        11 bytes

Concurrency Level:      1000
Time taken for tests:   13.837 seconds
Complete requests:      500000
Failed requests:        0
Write errors:           0
Keep-Alive requests:    495440
Total transferred:      156477200 bytes
HTML transferred:       5500000 bytes
Requests per second:    36136.00 [#/sec] (mean)
Time per request:       27.673 [ms] (mean)
Time per request:       0.028 [ms] (mean, across all concurrent requests)
Transfer rate:          11043.87 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    1  38.5      0    3014
Processing:     0   27  24.3     19     322
Waiting:        0   27  24.2     19     322
Total:          0   28  46.3     19    3085

Percentage of the requests served within a certain time (ms)
  50%     19
  66%     26
  75%     35
  80%     45
  90%     70
  95%     74
  98%     80
  99%     88
 100%   3085 (longest request)

仓库地址:

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

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


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

查看所有标签

猜你喜欢:

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

C标准库

C标准库

P. J. Plauger / 卢红星、徐明亮、霍建同 / 人民邮电出版社 / 2009-7 / 79.00元

本书是由世界级C语言专家编写的C标准库经典著作。英文版已经重印十多次,影响了几代程序员。 本书结合C标准的相关部分,精辟地讲述了每一个库函数的使用方法和实现细节,而这正是一个真正的C程序员所必须掌握的。更重要的是,书中给出了实现和测试这些函数的完整源代码,可以让你更深入地学习C语言。不仅如此,本书还讨论了一些即使是最有经验的C程序员通常也不熟悉的知识,比如国际化和独立于区域设置的程序的编写、......一起来看看 《C标准库》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

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

正则表达式在线测试