Re: [PHP-DEV] RFC [Discussion]: Redacting parameters in back traces

2022-01-31 Thread Alexandru Pătrănescu
On Mon, Jan 31, 2022 at 11:55 AM Tim Düsterhus, WoltLab GmbH < duester...@woltlab.com> wrote: > Hi Internals! > > On 1/10/22 15:05, Tim Düsterhus, WoltLab GmbH wrote: > > https://wiki.php.net/rfc/redact_parameters_in_back_traces > At the end of last week I've updated the RFC a little based on the

Re: [PHP-DEV] Adding `final class Deque` to PHP

2022-01-31 Thread Levi Morrison via internals
I think this RFC is in much better shape now. The last thing I'll personally push for is dropping `get` and `set`. I'm not sure about those names, and the functionality is already provided by `offsetGet` and `offsetSet`, albeit through `mixed` instead of `int`, but I think this sort of cleanup

Re: [PHP-DEV] Adding `final class Deque` to PHP

2022-01-31 Thread tyson andre
> > The name "deque" is used in the standard library of these languages: > > > >  - C++: std::deque > >  - Java: java.util.Deque (interface) > >  - Python: collections.deque > >  - Swift: Collections.Deque (not standard lib, apparently, but Apple > > official? Don't know Swift) > >  - Rust:

[PHP-DEV] [RFC] Embedding multiple PHP engines in a single thread

2022-01-31 Thread as
Hello internals, As you know, the PHP codebase makes heavy use of global variables. In ZTS builds, access to these globals are cleverly mapped to thread local storage via macros. To my knowledge, the limitation here is that there's no way to run multiple PHP engines in a single thread. (Please

Re: [PHP-DEV] Best way to monitor php-fpm container liveness on Kubernetes

2022-01-31 Thread Adam Hamsik
Hi Alexander, Pls see below my answers.    Best Regards,    Adam. Adam Hamšík Co-founder & CEO Mobile: +421-904-937-495 www.lablabs.io On 23 Jan 2022, 09:09 +0100, Alexandru Pătrănescu , wrote: > > On Sat, Jan 22, 2022 at 10:00 PM Adam Hamsik wrote: > > Hello, > > > > We are using PHP

Re: [PHP-DEV] RFC [Discussion]: Redacting parameters in back traces

2022-01-31 Thread Tim Düsterhus , WoltLab GmbH
Hi Internals! On 1/10/22 15:05, Tim Düsterhus, WoltLab GmbH wrote: https://wiki.php.net/rfc/redact_parameters_in_back_traces At the end of last week I've updated the RFC a little based on the questions Derick Rethan asked me for episode #97 of PHP Internals News podcast: