Zend Op Cache is compiled by default on PHP5.5+, but IIS encourages use of WinCache for opcode caching.
what is the extension that will give me the best performance and stability on IIS?
there are benchmarks, case studies?
Zend Op Cache is compiled by default on PHP5.5+, but IIS encourages use of WinCache for opcode caching.
what is the extension that will give me the best performance and stability on IIS?
there are benchmarks, case studies?
That article about WinCache is over seven years old, and is only about PHP 5.2.x and 5.3.x, which did not come with a built-in OpCache that worked on Windows. Now that PHP comes with its own OpCache, you should be using that one.
Additionally, the official release notes for WinCache version 1.3.5.0, the first version to support PHP 5.5, say:
Opcode Cache is disabled by default for PHP 5.5 because Opcache is available in Core
This is a clear indication that the developers of WinCache agree.
NOTE: You can still use WinCache for its userspace caching functions. This question is only about the OpCache component of WinCache.