问题描述 请教webman如何在控制器的方法return之后不主动关闭http连接? <?php namespace app\controller; use support\Request; class FooController { public function hello(Request $request) { return response('hello webman...
请问各位大佬,workerman/http-client中这段代码中$suspension->suspend()和$suspension->resume()的作用是什么? 还有就是为什么没有设置success_callback的请求会用到fiber?这样有什么好处? ...
问题描述 请问workerman有没有适用的内存分析工具(类似于go的pprof的)?我用workerman写了一个tcp server,逻辑不复杂(主要就是用openssl加解密数据),但是内存一直涨,几天从200M涨到了2G(Swap和Mem),我按照文档排查代码了,没有发现文档上提到的问题,我想分析内存占用,但是找不到合适的工具,github上面大部分分析的工具都是针对fpm的...