2

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?

Gordon
  • 296,205
  • 68
  • 508
  • 534
webgr
  • 494
  • 6
  • 14

2 Answers2

1

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

Gordon
  • 296,205
  • 68
  • 508
  • 534
1

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.

StasM
  • 9,840
  • 5
  • 49
  • 96