I am looking to tune Zend Optimizer+ on our Zend Server installation. Is there any tool that can show statistics about Zend Optimizer's performance? e.g. number of hits and misses, utilization of shared memory etc.

Apart from Optimizer+ configuration directives, anything else we can do within our application code to help the bytecode caching engine do a better job?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You may call function accelerator_get_status() and see the result - it would contain some information about the O+ internal state and what happens inside.

You may also look into increasing realpath_cache_size - default is too small for big application.

link|improve this answer
accelerator_get_status() produces a very detailed report. Just what we wanted. thanks! – webgr Nov 8 '10 at 17:57
feedback

There is not much to tune with Zend Optimizer. Check out:

Apart from this, you can only tweak what is available through the Zend Server UI.

For Zend Optimizer Plus, there is a number of ini configs you can change as explained in

link|improve this answer
He asked about Zend Optimizer PLUS, not Zend Optimizer. Two different products – passer by Mar 3 '11 at 18:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.