Dump the code

OPcache for better PHP performance

Created 7 months ago
Posted By admin
5min read
OPcache, or Opcode Cache, significantly enhances the performance of PHP scripts by storing precompiled script bytecode in shared memory. This eliminates the need for PHP to load and parse the script on every request, resulting in faster execution times. 

OPcache accelerates PHP execution by reducing the overhead associated with parsing and compiling scripts. Instead of parsing the same scripts repeatedly, OPcache preserves the compiled bytecode, enabling swift execution with minimal computational effort

By storing bytecode in shared memory, OPcache minimizes the need for file I/O operations during script execution. This not only speeds up the process but also conserves server resources, contributing to a more efficient and scalable infrastructure.

Particularly beneficial for high-traffic websites and applications, OPcache enhances scalability by alleviating the burden on server resources. The reduced CPU and memory demands enable servers to handle more concurrent requests without sacrificing performance.

While OPcache significantly boosts performance, it's crucial to manage cache invalidation effectively. This involves refreshing the cache when changes occur in the PHP codebase. Strategic cache invalidation ensures that updates and modifications take effect promptly.

1. Install OPcache
OPcache is included in many PHP distributions by default, but it's essential to verify its presence. If you don't have it installed, you can do so using your package manager. For example, on a Debian-based system:

sudo apt-get install php-opcache

On a Red Hat-based system:

sudo yum install php-opcache

Make sure to restart your web server after installation:

# For Apache
sudo service apache2 restart

# For Nginx
sudo service nginx restart

2. Configure OPcache
Configuring OPcache involves adjusting various settings in your php.ini file to match your server's resources and the requirements of your PHP applications. Here's an in-depth explanation of some common configurations:

- opcache.enable (Default: 1): This setting enables or disables OPcache. It should be set to 1 to enable OPcache. If for some reason you want to disable OPcache, you can set it to 0.

- opcache.validate_timestamps (Default: 1): When set to 1, OPcache checks the timestamp of each script file on every request. If a file's timestamp changes, OPcache revalidates and recompiles the script. This is useful during development or when frequent code changes occur. In production, setting it to 0 can improve performance by eliminating the need for constant timestamp checks.

- opcache.max_accelerated_files (Default: 2000): This parameter sets the maximum number of files that can be stored in the OPcache. Increase this value if your application has a large number of PHP files.

- opcache.memory_consumption (Default: 64): This sets the amount of memory, in megabytes, that OPcache is allowed to use. Adjust this based on your server's available memory.

- opcache.max_wasted_percentage (Default: 5): This parameter sets the maximum percentage of wasted memory allowed. Wasted memory occurs when OPcache stores information about scripts that are no longer in use. Adjust this value based on your server's memory constraints.

Here's an example of how these settings might be configured in your php.ini file:

; Enable OPcache
opcache.enable=1

; Validate cached files on every request during development
opcache.validate_timestamps=1

; Maximum number of files that can be stored in the cache
opcache.max_accelerated_files=10000

; Memory allocated for OPcache
opcache.memory_consumption=256

; Maximum memory OPcache can use
opcache.max_wasted_percentage=10

3. Restart your web server
After modifying the php.ini file, restart your web server to apply the changes:

# For Apache
sudo service apache2 restart

# For Nginx
sudo service nginx restart

4. Monitor OPcache
To monitor OPcache, you can use tools like opcache_get_status() in your PHP scripts or external tools like Zend OPcache Status, a web-based GUI for monitoring OPcache.

<?php
print_r(opcache_get_status());
?>
This provides detailed information about the current status of OPcache.

5. Cache invalidation
There are situations where you need to clear or invalidate the OPcache, such as when updating your PHP files. There are a few ways to achieve this:

- Manual restart:  You can manually restart your web server to clear the OPcache. While effective, it may cause a brief downtime.

- Touch files: Simply touching (updating the modification timestamp of) the PHP files will trigger OPcache to revalidate and recompile them on the next request.

- OPcache API: You can use the OPcache API in your PHP code to clear the cache programmatically. Here's an example:

<?php
opcache_reset();
?>
This function clears the entire OPcache, forcing PHP to recompile scripts on the next request.


By carefully following these steps and adjusting the configurations, you can install, configure, and optimize OPcache for your specific environment. This ensures both improved performance and efficient handling of code changes. Adjust the configurations based on your server environment and application requirements.
Topics

Mastering Nginx

27 articles

Bash script

2 articles

Crontab

2 articles