preload的灵感来自于Java HotSpot VM(有人说他越来越像JAVA了),在服务启动时(在运行任何应用程序代码之前),我们可能会将一组特定的 PHP 文件加载到内存中,并使其内容"永久可用"到该服务器将处理的所有后续请求。 这就要求被加载的文件应该是很少改动的,因为不支持热更新(浪费资源去监视热更新),所以改动后必须手动重启php-fpm
首先是安装zend_opcache扩展安装,我是使用源码编译的php,所以进到源码目录安装扩展即可:
make clean
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
make install
最后在 php.ini
中加入 zend_extension=opcache即可(这里是zend_extension
),php -m
进行确认,重启php-fpm
主要是 opcache.preload
和 opcache.preload_user
选项,定义加载的入口文件(该文件下列出详细文件列表)和用户组
vi /usr/local/php/etc/php.ini
opcache.enable=1
opcache.error_log=/usr/local/php/var/log/opcache.log
opcache.preload=/data/www/fmock/public/preload.php
opcache.preload_user=www
preload.php入口文件
opcache_compile_file('./test.php');
./test.php
function test() {
echo 'This is test func';
}
index.php访问文件
echo 'start<br>';
test();
echo '<br>stop';
输出
start
This is test func
stop
多个文件存在依赖的时候发现也可以正常输出,但是需要使用require_once
代替opcache_compile_file
:
preload.php入口文件
require_once('./test.php');
#opcache_compile_file('./test.php');
./test.php
require_once('/data/www/test.php');
#opcache_compile_file('/data/www/test.php');
function test() {
echo 'This is test func';
}
/data/www/test.php被引入的文件
function test2(){
echo '<br>This is tesadfasdfst2 function';
}
function test3(){
echo '<br>This is test33333sdf3 function';
}
index.php访问文件
echo 'start<br>';
test();
test2();
test3();
echo '<br>stop';
输出
start
This is test func
This is tesadfasdfst2 function
This is test33333sdf3 function
stop