基于 PHP 的内网穿透工具 “Spike”
Spike https://github.com/slince/spike;
之前由于要与一个同事远程协作开发一款app需要用到内网穿透服务,在网上找到了frp与ngrok;后来我在想能不能用php也写出来一个这样的服务软件?大家都知道php多进程多线程不够友好,在window上还不支持;写服务确实很吃力;不过幸运的是有ReactPHP的存在,关于ReactPHP不做赘述有兴趣的同学可以自行百度。
基于ReactPHP的IO多路复用,使得Spike并没有比Frp性能差太多;下面是我简单做的一个benchmark,基于apache ab检验http隧道的服务性能;客户端与服务端都搭在本地,代理同事电脑上的http服务。不是特别符合应用场景,大家简单看一下。
Spike:
Concurrency Level: 10
Time taken for tests: 37.727 seconds
Complete requests: 100
Failed requests: 0
Total transferred: 2569900 bytes
HTML transferred: 2514600 bytes
Requests per second: 2.65 [#/sec] (mean)
Time per request: 3772.747 [ms] (mean)
Time per request: 377.275 [ms] (mean, across all concurrent requests)
Transfer rate: 66.52 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.4 0 3
Processing: 533 3602 591.9 3714 4096
Waiting: 516 3587 592.3 3701 4076
Total: 534 3602 591.9 3715 4097
Percentage of the requests served within a certain time (ms)
50% 3715
66% 3791
75% 3822
80% 3844
90% 3970
95% 4015
98% 4053
99% 4097
100% 4097 (longest request)
Frp:
Concurrency Level: 10
Time taken for tests: 38.230 seconds
Complete requests: 100
Failed requests: 0
Total transferred: 2569900 bytes
HTML transferred: 2514600 bytes
Requests per second: 2.62 [#/sec] (mean)
Time per request: 3823.045 [ms] (mean)
Time per request: 382.304 [ms] (mean, across all concurrent requests)
Transfer rate: 65.65 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 0 0.2 0 1
Processing: 379 3650 644.4 3809 4140
Waiting: 360 3633 645.5 3789 4124
Total: 380 3650 644.4 3809 4140
Percentage of the requests served within a certain time (ms)
50% 3809
66% 3847
75% 3909
80% 3923
90% 4026
95% 4053
98% 4129
99% 4140
100% 4140 (longest request)
从上面可以看出Spike性能要稍微好点,不过这个地方有点不公平,我在做spike的测试时只开启了服务端的日志,客户端的日志是关闭的;而FRP的两端日志都是开启的;我不知道怎么关frp的日志;
在这里简单提一点由于Spike的日志IO是同步的所以日志的读写会耗掉部分性能,提升日志等级减少日志写入可以提升不少的性能;
最后再次附上项目地址: https://github.com/slince/spike 欢迎star,欢迎fork
本帖已被设为精华帖!
本帖由 Summer
于 7年前 加精
目前Spike还在公测期,没有发布正式版;欢迎大家测试使用如果有问题及时发issue;
通过composer安装
围观大牛
@Rekkles 0.o 共同学习 共同进步
厉害!关注了。
请问这个支持https吗
👍🏻 最近也再用 reactphp 超级强大啊