Detailed explanation of how to use PHP's Opcache acceleration
This article mainly introduces how to use PHP's Opcache acceleration. The editor thinks it is quite good, so I will share it with you now and give it as a reference. Let’s follow the editor and take a look.
This article introduces how to use PHP’s Opcache acceleration. The details are as follows. Share it with everyone:
Introduction
For PHP version 5.5 or above, you can use PHP's own opcache to enable performance acceleration (the default is off). For versions below PHP 5.5, you need to use APC acceleration
Opcache is a method that avoids the overhead of loading and parsing PHP scripts each time by storing the precompiled bytecode of the parsed PHP script in shared memory. The parser can read the cached bytecode directly from the shared memory, thus greatly improving the execution efficiency of PHP.
Configuration
In PHP 5.5.0 and subsequent versions, PHP has embedded the Opcache function in the release version in the form of an extension library. Opcache is not turned on by default. To accelerate, developers need to add or annotate Opcache related configurations in php.ini. For older versions, Opcache can be installed and configured as a PECL extension library
php.ini:
[opcache] # 启动操作码缓存 opcache.enable=1 #针对支持CLI版本PHP启动操作码缓存 一般被用来测试和调试 opcache.enable_cli=1 # 共享内存大小,单位为MB opcache.memory_consumption=128 #存储临时字符串缓存大小,单位为MB,PHP5.3.0以前会忽略此项配置 opcache.interned_strings_buffer=8 #缓存文件数最大限制,命中率不到100%,可以试着提高这个值 opcache.max_accelerated_files=4000 #一定时间内检查文件的修改时间, 这里设置检查的时间周期, 默认为 2, 单位为秒 opcache.revalidate_freq=60 #开启快速停止续发事件,依赖于Zend引擎的内存管理模块,一次释放全部请求变量的内存,而不是依次释放内存块 opcache.fast_shutdown=1 #启用检查 PHP 脚本存在性和可读性的功能,无论文件是否已经被缓存,都会检查操作码缓存,可以提升性能。 但是如果禁用了 opcache.validate_timestamps选项, 可能存在返回过时数据的风险。 opcache.enable_file_override=1
Opcache Notes
1. There is no need to use apc and Xcache acceleration when using Opcache;
Because PHP 5.5.0 and subsequent versions have built-in support for Opcache Support, so PHP realizes its importance. Compared with third-party PHP optimizers such as Xcache, using Opcache will be a better choice. In addition, if both exist at the same time, the number of cache hits of Opcache will be greatly reduced and unnecessary overhead will be added.
2. It is not recommended to turn on Opcache during the development process
After turning on Opcache, the content modified by the developer will not be displayed and take effect immediately because it is affected by opcache.revalidate_freq=60, so It is recommended to turn on Opcache when testing performance after development and testing. Of course, Opcache must always be turned on in the production environment.
3. It is not recommended to set the Opcache indicators too large
The configuration size of each Opcache indicator or whether to enable it needs to be combined with the actual needs of the project and the configuration recommended by Opcache official, and the actual situation of the project needs to be analyzed , which can be combined with the visual cache information analysis and adjustment in Part 4 above.
4. It is not recommended to use the old version of Opcache for a long time
It is recommended to pay attention to the news of Opcache official website in time to learn about its bug fixes, function optimization and new functions in real time, so as to better apply it in your own projects.
5. It is not recommended to put the open source project introduced above into the Web service root directory in a production environment. The reason is very simple, because this open source project does not have access restrictions and security processing. , that is to say, any user who can access the external network can directly access it as long as he knows the access address, so it is not safe. Generally, this open source tool only helps to visually analyze the performance of PHP, and is usually used during the development and debugging phase. If you just want to enable it in a production environment, you must do security restrictions.
The above is the entire content of this article. I hope it will be helpful to everyone's study. I also hope that everyone will support the php Chinese website.Articles you may be interested in:
How to generate Gravatar avatar address using LaravelDiscuss in detail the related usage of public, private, protected, abstract and other keywords in PHPPHP allows the arrays with the same value to form a new array instance to explainThe above is the detailed content of Detailed explanation of how to use PHP's Opcache acceleration. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
