[PHP-DEV] Re: FPM preloading of PHP files

2018-04-20 Thread Dmitry Stogov
Hi Jakub, I thought about pre-loading explicitly specified files (or directories) on PHP startup, before forking worker processes. As result all pre-loadd files should be available to all workers. Of course the should be kept in immutable form. Thanks. Dmitry. __

[PHP-DEV] Re: FPM preloading of PHP files

2018-04-20 Thread Jakub Zelenka
Hi Dmitry, On Fri, Apr 20, 2018 at 8:54 AM, Dmitry Stogov wrote: > Hi Jakub, > > > I thought about pre-loading explicitly specified files (or directories) on > PHP startup, before forking worker processes. > > As result all pre-loadd files should be available to all workers. Of > course the shou

Re: [PHP-DEV] Performance optimization ideas for PHP 7.3

2018-04-20 Thread Albert Casademont
I agree on maybe opening another thread, I'm a contributor to PHP-PM so yes, we're trying to make things better on that end ;) On Thu, Apr 19, 2018 at 4:50 PM, Maxime Veber wrote: > Hello, > > Thank you very much Nicolas for theses detections ! (I'll try maybe my > first contributions to PHP 😇)

[PHP-DEV] Re: FPM preloading of PHP files

2018-04-20 Thread Dmitry Stogov
This makes sense. From: jakub@gmail.com on behalf of Jakub Zelenka Sent: Friday, April 20, 2018 1:04:01 PM To: Dmitry Stogov Cc: PHP internals list Subject: Re: FPM preloading of PHP files Hi Dmitry, On Fri, Apr 20, 2018 at 8:54 AM, Dmitry Stogov mailto:

[PHP-DEV] openssl_pkey_derive

2018-04-20 Thread Jakub Zelenka
Hi, There is a PR to add a new function called openssl_pkey_derive to openssl extension: https://github.com/php/php-src/pull/3197 The purpose is to derive public key algorithm shared secret. I think it's a reasonable addition and if there are no objections, I will merge it in the next two weeks.