启用PHP 5.5 OPCache
作者:互联网
配置OPCache as recomanded后,它不起作用.
那么,如何调试OPCache以查看问题出在哪里?
还是我想念什么?
我的配置:
php.ini
的PHP -V
并在代码中
opcache_get_status(); // return false
//but
extension_loaded('Zend OPcache') // return true
解决方法:
已经有一段时间了,所以我想您已经摆脱了这个问题,但万一您没有这样做.注意到您正在运行Xdebug …
您是否检查过php.ini以确保以下内容不是问题?
If you want to use OPcache with » Xdebug, you must load OPcache before Xdebug.
http://php.net/manual/en/opcache.installation.php
可能值得一提的另一件事是,您无需指定共享库的路径.以下内容就足够了:
zend_extension=opcache.so
标签:php-5-5,caching,opcache,php 来源: https://codeday.me/bug/20191028/1953598.html