php和go的web性通对比_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php和go的web性通对比

php和go的web性通对比

 2019/7/8 16:56:15  ipython  程序员俱乐部  我要评论(0)
  • 摘要:试用了一个php和go的helloworld的性能对比纯phpindex.php<?phpecho'helloworld';?>php-S0.0.0.0:8801ab-n100-c10http://127.0.0.1:8801/#Requestspersecond:4000lumenphp-S0.0.0.0:8802-tpublicab-n100-c10http://127.0.0.1:8802/#Requestspersecond:683.92配置nginxab-n100
  • 标签:Web PHP

试用了一个php和go的helloworld的性能对比

?

纯php? ? index.php? ? ? <?php? echo 'hello world';? ?>

php -S 0.0.0.0:8801

ab -n 100 -c 10 http://127.0.0.1:8801/? ? ? ? ?# Requests per second:? 4000

?

?

lumen

php -S 0.0.0.0:8802 -t public

ab -n 100 -c 10 http://127.0.0.1:8802/? ? ? ? ?# Requests per second:? ? 683.92?

?

配置nginx

ab -n 100 -c 10 http://127.0.0.1:8803/? ? ? ? ?# Requests per second:? ? 827.40 [#/sec] (mea

?

?

安装 go和go的web框架 Beego

go get github.com/astaxie/beego

`? ?// hello.go

package main

import "github.com/astaxie/beego"

func main(){

? ? beego.Run()

}

`

go build hello.go

./hello

ab -n 100 -c 10 http://127.0.0.1:8080/? ? ? ? ?#Requests per second:? ? 3887.12 [#/sec]

上一篇: ThinkSNS+ 基于 Laravel master 分支,从 1 到 0,再到 0.1 下一篇: 没有下一篇了!
发表评论
用户名: 匿名