Kévin Dunglas
Kévin Dunglas
No, it's not a placebo effect. The Docker image works well because it uses FrankenPHP with glibc. The bug only affects the static binary because it is compiled with musl,...
Did you try changing the number of threads? Your number of threads may be too low and requests buffered: https://frankenphp.dev/docs/performance/#number-of-threads-and-workers Also, my WordPress repository has been deprecated in favor of...
What version of HTTP are you using? Could you try if enabling full-duplex fixed the issue? https://caddyserver.com/docs/caddyfile/options#enable-full-duplex
Thanks. Would you be able to create a minimal reproducer (like a tiny repository with a script reproducing the issue)? This would help a lot to debug.
@henderkes I think you can reopen on the official homebrew repo as long as you copy the output of the commands they ask.
It seems that you can force Homebrew to compile with GCC with: brew install --build-from-source --cc=gcc php
Thanks for the hint! Did you use GCC? What could be nice is to provide a script to easily compile a PGO version of FrankenPHP, so advanced users can do...
FrankenPHP is written in Go, and Go doesn't play well with forks. I'm not surprised this doesn't work. The best option would be to use the async extension when available...
Indeed good idea. PR welcome.
Technically, it should be possible to create a websockets extension the same way I created the gRPC extension.