Activate both WinCache and OpCache for php 5.6 to improve performance?

We run the typo3 site on Windows Server using IIS 8.5 and php 5.6.15 via FastCGI. To improve performance and reduce db load, we have included WinCache-Extension due to UserCache features . WinCache OpCache is disabled because it is listed as deprecated, and OpCache is already associated with php.

  • Does it make sense for performance to enable WinCache- FileCache besides php OpCode-Cache ?
  • Is there any order, are these caches used, or will these types of cache compete with each other?
  • Should I better disable OpCache completely if using WinCache?

Any advice would be appreciated.

+4
source share
1 answer

Cache WinCache caches any file opened through the PHP threading API. This includes script files, as well as any file opened using stream I / O interfaces. So yes, there is an advantage to using the WinCache file cache, even if you have Zend Opcache enabled.

+3
source

Source: https://habr.com/ru/post/1620199/


All Articles