Hi, as written on subject, how can i configure opcache on php 7 and what should be the optimized configuration for 10$ droplet?
thanks in advance.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
@newbie
Normally I use something like:
Which is from:
https://www.scalingphpbook.com/blog/2014/02/14/best-zend-opcache-settings.html
Depending on file count, you may need to increase
opcache.max_accelerated_files
. That said, the above is allocating up to 192MB, which may be excessive depending on your application. If you find that to be high (i.e. you’re only using 25% of that at any give time), you can reduce that down further.Heya,
Updating the question for PHP 7 and PHP8 in case anyone stumbles upon it:
The
opcache
extension is bundled with PHP 5.5.0 and later versions. It improves PHP performance by storing precompiled script bytecode in shared memory, thereby removing the need for PHP to load and parse scripts on each request. Here’s a sample configuration to use as a starting point for tuningopcache
on a server with limited resources, like a $10 droplet:Open your
opcache.ini
file, which you can typically find at/etc/php/7.4/cli/conf.d/10-opcache.ini
or/etc/php/8.0/cli/conf.d/10-opcache.ini
depending on the version of PHP you’re using. You might need to adjust these paths based on your PHP installation.Here’s a basic configuration to start with:
Remember to restart your PHP-FPM or Apache service to apply these changes:
sudo systemctl restart php7.4-fpm
orsudo systemctl restart php8.0-fpm
sudo systemctl restart apache2
Please adjust these configurations according to your application needs. The optimal settings can vary depending on the characteristics of your site and the amount of memory on your server. It’s also recommended to monitor your server’s performance and memory usage to tune these settings further.
Lastly, don’t forget to keep your PHP version and extensions, including
opcache
, up to date to benefit from the latest improvements and bug fixes.