swoole-src icon indicating copy to clipboard operation
swoole-src copied to clipboard

🚀 Coroutine-based concurrency library for PHP

Results 176 swoole-src issues
Sort by recently updated
recently updated
newest added

Please answer these questions before submitting your issue. 1. What did you do? If possible, provide a simple script for reproducing the error. ![截屏2022-08-10 上午10 37 38](https://user-images.githubusercontent.com/28804380/183798662-56a87b03-5029-43b0-9f94-82f59f9ab224.png) 2. What did...

Please answer these questions before submitting your issue. 1. What did you do? If possible, provide a simple script for reproducing the error. 看文档说明,这个是因为 在约定的时间 ([max_wait_time](https://wiki.swoole.com/#/server/setting?id=max_wait_time) 秒) 内此 Worker 没有退出,Swoole...

MBP 16 M1 Pro Docker php:8.1-cli pecl install swoole ``` #0 72.36 /tmp/pear/temp/swoole/ext-src/swoole_http2_server.cc: In lambda function: #0 72.36 /tmp/pear/temp/swoole/ext-src/swoole_http2_server.cc:326:30: error: 'using HttpContext = struct swoole::http::Context' {aka 'struct swoole::http::Context'} has no...

Please answer these questions before submitting your issue. 1. What did you do? If possible, provide a simple script for reproducing the error. 想了解下什么情况下会导致这个警告,业务代码里面没有主动使用timer之类的函数。 出现这个警告需要关注么,偶发。 2. What did you expect...

Hello everyone. I have a problem that i thing this is exception. Actualy some issue writed about "abnormal exit" but anyone not continue. Thereforeof i am writing this issue now....

question

Please answer these questions before submitting your issue. 1. What did you do? If possible, provide a simple script for reproducing the error. /usr/local/opt/php\@8.0/bin/phpize ./configure --enable-openssl --with-openssl-dir=/usr/local/opt/openssl\@1.1 --enable-swoole-curl --with-php-config=/usr/local/opt/php\@8.0/bin/php-config make...

swoole-cli什么时候支持mac版

Hello In version 5, the `Swoole\Http\Response->setCookie()` changed from: `->setCookie(name: $name,value: $value, expires: $expires, path: $path, domain: $domain, secure: $secure, httponly: $httponly);` to `->setCookie(name: $name,value: $value, expire: $expires, path: $path, domain:...

in progress

Other functions that are hooked are compatible in the non-coroutine

## Question How can I make one incoming `Swoole\Http\Server::on('Request')` to suspend/wait/yield indefinitely, and then another `Swoole\Http\Server::on('Request')` or even `Swoole\WebSocket\Server::on('Message')` can resume/unblock/continue that waiting HTTP request? Kind of like a "Promise"...