Home > Backend Development > PHP7 > body text

Do you know how to enable opcache in PHP7 to improve performance?

藏色散人
Release: 2023-02-17 19:50:01
forward
2892 people have browsed it

Brother Niao said in his blog that there are several tips to improve the performance of PHP7. The first one is to enable opcache:

Remember Enable Zend Opcache, because PHP7 is faster even without Opcache than PHP-5.6 with Opcache enabled.
So during the previous testing period, some people did not enable Opcache.

So what is Opcache?

The predecessor of Opcache is Optimizer , which is a closed-source but free-to-use PHP optimization acceleration component developed by Zend, the official company of PHP. Optimizer caches the script file Opcode generated by precompiling the PHP code in the shared memory for repeated use in the future, thus avoiding the time consumption of reading the code from the disk and compiling it again. At the same time, it also applies some code optimization modes to make the code execute faster. Thereby speeding up the execution of PHP.

The normal execution process of PHP is as follows

##request request (nginx, apache, cli, etc.)-->Zend engine reads the .php file-->Scans its dictionary and expressions-->Parses the file-->Creates The executed computer code (called Opcode)-->Finally execute Opcode--> response returns

Each time the PHP script is requested, the above steps will be executed. If the PHP source code does not If the Opcode changes, then the Opcode will not change. Obviously there is no need to regenerate the Opcode every time. Combined with the ubiquitous caching mechanism in the Web, we can cache the Opcode. Wouldn’t it be faster to directly access the cached Opcode in the future? After enabling the Opcode cache The flow chart is as follows:

The purpose of Opcode cache is to avoid repeated compilation and reduce CPU and memory overhead.

The following describes the installation of Opcache

Installation:

1、找到opcache的扩展,我的是php7.1yum list php71*
2、安装扩展
yum install php71w-opcache.x86_64
Copy after login

Configuration:

zend_extension=opcache.so
[opcache]
;开启opcache
opcache.enable=1  ;CLI环境下,PHP启用OPcache
opcache.enable_cli=1;OPcache共享内存存储大小,单位MB
opcache.memory_consumption=128  ;PHP使用了一种叫做字符串驻留(string interning)的技术来改善性能。例如,如果你在代码中使用了1000次字符串“foobar”,在PHP内部只会在第一使用这个字符串的时候分配一个不可变的内存区域来存储这个字符串,其他的999次使用都会直接指向这个内存区域。这个选项则会把这个特性提升一个层次——默认情况下这个不可变的内存区域只会存在于单个php-fpm的进程中,如果设置了这个选项,那么它将会在所有的php-fpm进程中共享。在比较大的应用中,这可以非常有效地节约内存,提高应用的性能。
这个选项的值是以兆字节(megabytes)作为单位,如果把它设置为16,则表示16MB,默认是4MB
opcache.interned_strings_buffer=8;这个选项用于控制内存中最多可以缓存多少个PHP文件。这个选项必须得设置得足够大,大于你的项目中的所有PHP文件的总和。
设置值取值范围最小值是 200,最大值在 PHP 5.5.6 之前是 100000,PHP 5.5.6 及之后是 1000000。也就是说在200到1000000之间。
opcache.max_accelerated_files=4000;设置缓存的过期时间(单位是秒),为0的话每次都要检查
opcache.revalidate_freq=60;从字面上理解就是“允许更快速关闭”。它的作用是在单个请求结束时提供一种更快速的机制来调用代码中的析构器,从而加快PHP的响应速度和PHP进程资源的回收速度,这样应用程序可以更快速地响应下一个请求。把它设置为1就可以使用这个机制了。
opcache.fast_shutdown=1;如果启用(设置为1),OPcache会在opcache.revalidate_freq设置的秒数去检测文件的时间戳(timestamp)检查脚本是否更新。
如果这个选项被禁用(设置为0),opcache.revalidate_freq会被忽略,PHP文件永远不会被检查。这意味着如果你修改了你的代码,然后你把它更新到服务器上,再在浏览器上请求更新的代码对应的功能,你会看不到更新的效果
强烈建议你在生产环境中设置为0,更新代码后,再平滑重启PHP和web服务器。
opcache.validate_timestamps=0 ;开启Opcache File Cache(实验性), 通过开启这个, 我们可以让Opcache把opcode缓存缓存到外部文件中, 对于一些脚本, 会有很明显的性能提升.这样PHP就会在/tmp目录下Cache一些Opcode的二进制导出文件, 可以跨PHP生命周期存在.opcache.file_cache=/tmp
Copy after login

View phpinfo:

##Test results:

The same interface has been improved from a few hundred milliseconds to about 50ms now

The above is the detailed content of Do you know how to enable opcache in PHP7 to improve performance?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:cnblogs.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!