Re: [PHP-DEV] RFC proposal: worker mode primitives for SAPIs

2024-01-04 Thread Rowan Tommins
On 5 January 2024 06:55:34 GMT, Robert Landers wrote: >I already said this, but to reiterate: I, personally, hear what you >are saying and largely agree with you; however, before we can really >have any kind of discussion on concurrent servers, we HAVE to address >the underlying issues that are

Re: [PHP-DEV] RFC proposal: worker mode primitives for SAPIs

2024-01-04 Thread Robert Landers
On Fri, Jan 5, 2024 at 2:56 AM Daniil Gentili wrote: > > Hi, > > I've been lurking around in the discussion for a while, and I'd like to chime > in now since the main, glaring issue with this proposal has only been > explicitly mentioned by Rowan Tomminis, with that subthread quickly >

Re: [PHP-DEV] RFC proposal: worker mode primitives for SAPIs

2024-01-04 Thread Daniil Gentili
Hi, I've been lurking around in the discussion for a while, and I'd like to chime in now since the main, glaring issue with this proposal has only been explicitly mentioned by Rowan Tomminis, with that subthread quickly degenerating with misguided replies. PHP as a language absolutely needs a

[PHP-DEV] Re: RFC proposal: worker mode primitives for SAPIs

2024-01-04 Thread Kévin Dunglas
> Le 4 janv. 2024 à 18:21, Joanhey a écrit : > > Hi, > > I like it for start a discussion, than it's necessary. > But we need to see the big picture. > > The CLI-SAPI is the poor brother in PHP (contrary to other languages), but > that is another discussion than I'll try to open later. >

[PHP-DEV] Re: RFC proposal: worker mode primitives for SAPIs

2024-01-04 Thread Joanhey
Hi, I like it for start a discussion, than it's necessary. But we need to see the big picture. The CLI-SAPI is the poor brother in PHP (contrary to other languages), but that is another discussion than I'll try to open later. Create a Worker-SAPI? First any CLI worker can't access the SAPI.

[PHP-DEV] PHP 8.3.2RC1 available for testing

2024-01-04 Thread Jakub Zelenka
PHP 8.3.2RC1 has just been released and can be downloaded from: https://downloads.php.net/~jakub/ or https://qa.php.net/ or use the git tag: php-8.3.2RC1 Windows binaries are available at: https://windows.php.net/qa/#php-8.3 Please test it carefully, and report any bugs to

[PHP-DEV] PHP 8.2.15RC1 available for testing

2024-01-04 Thread Sergey Panteleev
PHP 8.2.15RC1 has just been released and can be downloaded from: https://downloads.php.net/~sergey/ or https://qa.php.net/ or use the git tag: php-8.2.15RC1 Windows binaries are available at: https://windows.php.net/qa/#php-8.2 Please test it carefully, and report any bugs to

[PHP-DEV] Re: [RFC][Under discussion] RFC1867 for non-POST HTTP verbs

2024-01-04 Thread Joanhey
Hi I love this RFC so we can use it from CLI-SAPI We can't use sapi_module.read_post() from CLI. https://github.com/joanhey/AdapterMan This runtime use the CLI-SAPI, but this SAPI is very limited. We can use parse_str() easily for 'application/x-www-form-urlencoded' but we need to replicate