Prasad Rajapaksha
Prasad Rajapaksha

Reputation: 6190

Zend Website Processing Time

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.

Upvotes: 1

Views: 221

Answers (3)

Prasad Rajapaksha
Prasad Rajapaksha

Reputation: 6190

Finally I found a solution. It works well.

http://framework.zend.com/manual/en/performance.classloading.html

Upvotes: 1

Hari K T
Hari K T

Reputation: 4244

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

Upvotes: 0

Code Lღver
Code Lღver

Reputation: 15603

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

for guidance there is link: Zend_optimizer and Zend_optimizer install

Upvotes: 0

Related Questions