Re: [PHP-DEV] profiling followup on addition of streams to include_path - it's *faster*

2008-03-08 Thread Gregory Beaver
Alexey Zakhlestin wrote: > what about including(_once) by absolute path? > Hi, There is no difference from the existing code for include_once, the first line of php_resolve_path has a check for IS_ABSOLUTE_PATH, all of the code I wrote follows this line. Calls to include (no _once) would add

Re: [PHP-DEV] profiling followup on addition of streams to include_path - it's *faster*

2008-03-07 Thread Alexey Zakhlestin
On 3/8/08, Gregory Beaver <[EMAIL PROTECTED]> wrote: > Hi, > > When I posted yesterday's patch to add stream support to include_path > (http://news.php.net/php.internals/36031) I mentioned that I suspected > benchmarking would reveal it to be slow. My primary goal is to provide > no impact on

[PHP-DEV] profiling followup on addition of streams to include_path - it's *faster*

2008-03-07 Thread Gregory Beaver
Hi, When I posted yesterday's patch to add stream support to include_path (http://news.php.net/php.internals/36031) I mentioned that I suspected benchmarking would reveal it to be slow. My primary goal is to provide no impact on current users who are using a traditional include_path, with a secon