-- admirau <[email protected]> wrote (on Monday, 01 June 2009, 12:58 AM -0700): > Matthew Ratzloff wrote: > > So the obvious next step would be to post your PHP CLI include path. > > php -i | grep "include_path" > > include_path => c:\users\user\www\library;. => c:\users\user\www\library;. > > library/ > Zend/ > Doctrine/ > PHPTAL/ > > I use SET ZEND_TOOL_INCLUDE_PATH_PREPEND="C:\users\user\www\library\Zend\" > + autoloader + removed all require_once + upgreded to stable php 5.2.9-2 > > This helps a little, but still it is 100 times slower than on Ubuntu.
The Mac I/O system is notoriously slow. Unfortunately, Zend_Tool needs to scan all class files in your include_path to determine what classes it can consume -- which means opening a lot of files. It may make sense for us to introduce some sort of caching mechanism into Zend_Tool so that you only incur a slow-down the first time you call it. -- Matthew Weier O'Phinney Project Lead | [email protected] Zend Framework | http://framework.zend.com/
