[PHP-DEV] Improving (?) PHP extension loading mechanism (was: Re: [PHP-CVS] cvs: php-src /ext/pdo pdo.c) (fwd)

2005-06-10 Thread Jani Taskinen
The patch in question can be found here: http://www.php.net/~jani/patches/exts_loading_poc.patch It is merely a quick proof-of-concept: a) Separates PHP extension registering and startup routines b) Adds an extra 'depends' entry to the module struct c) Nukes th

Re: [PHP-DEV] Improving (?) PHP extension loading mechanism (was: Re: [PHP-CVS] cvs: php-src /ext/pdo pdo.c) (fwd)

2005-06-10 Thread Gareth Ardron
Jani Taskinen wrote: - Make it quicker. I haven't done any benchmarks but it's pretty obvious this does make the PHP startup slower.. Ok, slower in what way - I mean, lets assume apache1.3 is being used here, does it make the apachectl start slower, or does it make each indivdua

Re: [PHP-DEV] Improving (?) PHP extension loading mechanism (was: Re: [PHP-CVS] cvs: php-src /ext/pdo pdo.c) (fwd)

2005-06-10 Thread Marcus Boerger
Hello Gareth, Friday, June 10, 2005, 3:07:21 PM, you wrote: > Jani Taskinen wrote: >> >> - Make it quicker. I haven't done any benchmarks but it's pretty >> obvious >> this does make the PHP startup slower.. > Ok, slower in what way - I mean, lets assume apache1.3 is being used > he