如何在APC操作码缓存中使用apc.filters参数来缓存某些路径?例如,我希望缓存对路径下的任何内容都是活动的:
原文链接:https://www.f2er.com/php/135119.html“在/ var / WWW /虚拟主机”
并排除路径
“在/ usr /共享/ PSA-部落/”
我试过用
apc.cache_by_default = 0 apc.filters = "+/var/www/vhosts"
和
apc.cache_by_default = 1 apc.filters = "-/usr/share/psa-horde/"
但是没有像我预期的那样工作.
http://www.php.net/manual/en/apc.configuration.php#ini.apc.filters
过滤器应该更像“/ var / www / vhosts / *”(注意通配符)吗?由于过滤器的工作方式,我担心这是不可能的:
Note that the filename used for
matching is the one passed to
include/require,not the absolute
path.
任何想法或样本配置?