workerman icon indicating copy to clipboard operation
workerman copied to clipboard

An asynchronous event driven PHP socket framework. Supports HTTP, Websocket, SSL and other custom protocols.

Results 118 workerman issues
Sort by recently updated
recently updated
newest added

目前 windows 上运行 workerman 对比 linux 功能不完整的原因, 看起来主要是因为 posix, pcntl 这两个拓展提供的相应信号、进程相关函数。 能否抽离出**针对操作系统的执行层**来提供上述函数的统一封装, 然后将现在 `Worker.php` 对 posix, pcntl 的直接调用换成使用上述执行层。 这样做的好处是在各个各种操作系统都能使用完整的 workerman 特性, 同时类似 adapterman 的 fpm 兼容也可以整合到上述的执行层 cli 来完成。

Added new -jl flag, that only does something for the status call. When called, existing formatProcessStatusData evaluates boolean flag. If the flag is set, then call new formatConnectionStatusDataJson to turn...

Please answer these questions before submitting your issue. 1. What did you do? If possible, provide a simple script for reproducing the error. 在Windows 平台上,启用swow作为eventloop; 使用webman 工具打包为phar后,start启动服务端,出现错误 stream_poll_one(): Cannot represent...

bug

目前上传未知大小的流式数据,服务端会报 400 错误(`HTTP/1.1 400 Bad Request\r\nContent-Length: 0\r\n\r\n`)。 发现原因是代码中做了 header 中必须有 Content-Length 的限制(`Workerman\Protocols\Http::input` 内)。 但是当上传未知大小的数据时,仅使用 Transfer-Encoding: chunked 是符合标准的。 希望支持下。 测试代码: 客户端: ```php $fp = fopen('php://temp', 'r+'); fwrite($fp, 'hello'); $response = \Symfony\Component\HttpClient\HttpClient::create()...

Hey @walkor, thank you for you work! I`ve been worknig with workerman for like 5 years already Long story short: is it possible to sclae up/down worker count from child...

Hello @walkor Since you're the most reliable person to ask such a question, do you plan to support WebTransport? Any suggestions on what to use now if I want to...

Workerman is great. I'm running into 2 issues with reloading that may be the same issue that I was hoping you could assist with: I have a script similar to...

Please answer these questions before submitting your issue. 1. What did you do? If possible, provide a simple script for reproducing the error. - Workerman设置Swoole作为事件循环 - Swoole版本为6.X - 不开启iouring -...

bug