用于Wordpress的php.ini中的OP Cache配置

时间:2017-12-26 09:43:23

标签: php wordpress opcache

共享的Linux网络托管服务器正在运行PHP 7.2,并且在cPanel>中运行。 PHP选项,我启用了OP Cache。

我想知道是否有任何方法可以使用PHP.ini为Wordpress优化OP缓存。

我发现了一篇包含以下PHP.ini条目的文章:

opcache.memory_consumption=256
; The amount of memory for interned strings in Mbytes.
opcache.interned_strings_buffer=8
; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 100000 are allowed.
opcache.max_accelerated_files=10000
; The maximum percentage of “wasted” memory until a restart is scheduled.
opcache.max_wasted_percentage=15
opcache.revalidate_freq=0
opcache.force_restart_timeout=300

我发现立即添加它们增加了我的webpagetest.org TTFB结果。

再次禁用它们会再次降低我的webpagetest.org TTFB结果。

那么,有没有办法使用PHP.ini优化Wordpress的OP缓存?

1 个答案:

答案 0 :(得分:0)

使用W3C Total Cache插件,这是缓存wordpress的最佳插件。 它支持opcache

最好的php.ini设置取决于托管/服务器

我正在使用这些

opcache.enable=1
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable_cli=1