tuning PHP Zend Optimizer+
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+ configura开发者_如何学Gotion directives, anything else we can do within our application code to help the bytecode caching engine do a better job?
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.
There is not much to tune with Zend Optimizer. Check out:
- Zend Optimizer User Guide (pdf)
- Zend Optimizer Knowledge Base
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
- http://files.zend.com/help/Zend-Server-Community-Edition/zendoptimizerplus.html
精彩评论