Last Updated: November 21, 2018
·
1.14K
· gjerokrsteski

Core principles to make performant PHP applications

Some core principles for 2013/2014 to performant PHP applications:

  1. Upgrade to PHP 5.5 with Zend OpCache or APC using PHP-PFM + Nginx
  2. Stay up to date with your framework + dependencies (using Composer)
  3. Optimize your session store to use signed cookies or database with caching
  4. Cache your database and web service access with Memcache, DBA or Redis
  5. Do blocking work in the background with queues and tasks using Resque or Gearman
  6. Use HTTP caching and a reverse proxy cache like Varnish
  7. Profile code with Xdebug + Webgrind and monitor production performance

2 Responses
Add your response

Some more guidance on how to upgrade one's existing code and practices to the ones you listed would be super helpful :)

over 1 year ago ·

I would warmly suggest you this page http://www.phptherightway.com. There you can read about all above mentioned topics ;-)

over 1 year ago ·