Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is best way to improve performance of zend framework?

zend framework has many components/services I don't need, it has many includes. All this I think slow down application. Do you know how to speed up it? may be remove not used(what is common) components, or combine files to one file?

like image 875
waney Avatar asked Mar 30 '09 18:03

waney


1 Answers

  1. APC or eAccelerator (APC will be included by default in future releases, so I'd recommend using it, even though raw speed is slightly below of eAccelerator)

  2. Two level cache for configuration, full-page, partial views, queries, model objects:

    • 1st level cache (in memory KV-store, APC store or memcached)
    • 2nd level cache (persistent KV-store in files, SQLite or dedicated KV-store)
  3. RDBMS connection pooling, if avaliable.

like image 187
vartec Avatar answered Sep 22 '22 10:09

vartec