php - Zend Website Processing Time -
php - Zend Website Processing Time -
i have web site developed using zend framework. using mvc architecture , couple of zend libraries. 1 time host site on server noticed takes considerable time load page. specially processing time. take sometime start responding http request. used zend auto loader.
$autoloader = zend_loader_autoloader::getinstance(); $autoloader->registernamespace('classes_'); $autoloader->registernamespace('crypt_'); $autoloader->setfallbackautoloader(true);
it's still considerably slow. mydb indexed require fields. please suggest me way rid of issue.
thank you.
finally found solution. works well.
http://framework.zend.com/manual/en/performance.classloading.html
php performance zend-framework
Comments
Post a Comment