ZEND Optimizer
Aug 14, 2009 Uncategorized
What is Zend optimizer?
Chances are you’ll find it on your server -but may well wonder what is that. In short, PHP is an interpreted language. This means that every time a line of code is executed, the PHP interpreter has to figure out what should be done.
Interpreted languages are popular for quick deployment and testing, but server side software has to perform at its best to lower server resources.
Zend run time compiler does just that: lowers system resources by pre-parsing code and allowing faster execution. The Zend optimizer works in conjunction with the run time compiler to provide even better performance.


August 20th, 2009 at 12:05 am
Interesting and informative. But will you write about this one more?
August 20th, 2009 at 8:59 am
Yes, sure this was only a start, thanks.