我将一个网络服务器切换到PHP 5.5,默认情况下它附带Zend Opcache。发现它非常适合于APC配置的配置。 Opcache中的问题,我需要以某种方式定义只缓存特定文件夹中的文件。 在php.net中找到
opcache.blacklist_filename string
The location of the OPcache blacklist file. A blacklist file is a text file containing the names of files that should not be
加速,每行一个。允许使用通配符,前缀可以 也提供。以分号开头的行将被忽略为 评价。
A simple blacklist file might look as follows: ; Matches a specific file. /var/www/broken.php ; A prefix that matches all files starting with x. /var/www/x ; A wildcard match. /var/www/*-broken.php
但我有150个文件夹,例如网站以及我如何定义只缓存特定文件夹? 至于我现在的观点,我假设我可以通过将不需要的文件夹列表放在黑名单文件中来阻止缓存:
/var/www/domain.com/*
/var/www/domain.net/*
/var/www/domain.org/*