Zend网站处理时间

I have a web site developed using Zend Framework. Mainly I am using MVC architecture and couple of Zend libraries. Once I host the site on the server I noticed that it takes considerable time to load the page. Specially the processing time. It take sometime to start responding for the HTTP request. I used Zend auto loader.

$autoLoader = Zend_Loader_Autoloader::getInstance();
$autoLoader->registerNamespace('Classes_');
$autoLoader->registerNamespace('Crypt_');
$autoLoader->setFallbackAutoloader(true);

It's still considerably slow. MyDB is indexed for require fields. Someone please suggest me a way to get rid of this issue.

Thank you.

Use Zend's library : Zend_Optimizer. It will increase the response time.

for guidance there is link: Zend_optimizer and Zend_optimizer install

If you can use Zend_Cache then it will be one of the best way after certain level of Optimisation. Have a look into Zend_Cache_Frontend_Page