Rob Landers
Rob Landers
I'm able to reproduce on a project I'm working on. Disabling xdebug seems to solve it. I'll step through with gdb later and see what causes it—like yours, it seems...
Did you search existing issues? This looks related: #958
Tests are failing for some reason, I'll investigate.
I went ahead and merged #933 into this PR to run a benchmark. It looks like this makes worker/cgi-mode have the same performance characteristics.
Don't merge/review (unless you want to). I submitted a CL to Go and getting good feedback. Already, the CL version is 20-40% faster than this version and doesn't require any...
Yes! I don't think you even need a `sync.Map` as you can just use a slice[nbWorkers] then address the slice. It would be much more efficient and 'lock-free' so long...
`sync.Map` isn't necessarily inefficient, it efficiently does what it advertises, but it only is useful in certain situations, and this isn't one of them (cgo Handles uses `sync.Map` under the...
There are also storage plugins that can use s3 or other things to keep the certificate backed up and load it on a fresh start. > you need to create...
We could add this (PRs welcome) but `PATH_INFO` isn't always set and depends on what it is set to depending on the SAPI being used. - Apache: Available when using...
I believe you can configure it in the `env` setting somehow (possibly) via caddy configuration. However, I haven't tested this: ``` @php { path_regexp currentPath (.*) } #inside frankenphp config...