Reputation: 192
We're running a typo3-website on Windows Server using IIS 8.5 and php 5.6.15 via FastCGI. To improve performance and reduce db-load, we enabled the WinCache-Extension, because of it's UserCache capabilities. WinCache's OpCache is disabled, since it is stated as deprecated and OpCache is already bundled with php.
Any advice would be appreciated.
Upvotes: 5
Views: 1690
Reputation: 396
WinCache's file cache will cache any file opened via PHP's stream APIs. This includes the script files, as well as any file opened using the stream I/O APIs. So, yes, there is some benefit to having WinCache's file cache enabled, even though you have the Zend Opcache enabled.
Upvotes: 4