jaxwilko / wn-opcachepreload-plugin
Winter CMS support for opcache preloading
Installs: 963
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 2
Open Issues: 0
Type:winter-plugin
This package is auto-updated.
Last update: 2024-10-05 17:30:40 UTC
README
Preloading allows you to read php files into memory at server startup which helps boost performance. The tradeoff for this is that you will need to restart your webserver when you make a change to one of the cached php files.
Please note that preloading is not supported on Windows.
Installation
Install the plugin:
composer require jaxwilko/wn-opcachepreload-plugin
Configure opcache settings in your php.ini
:
[opcache] opcache.enable=1 opcache.memory_consumption=256 opcache.max_accelerated_files=20000 opcache.validate_timestamps=0 opcache.revalidate_freq=0 opcache.preload=/path/to/winter/plugins/jaxwilko/opcachepreload/preload.php opcache.preload_user=apache
Change
/path/to/winter
to whatever is right for your setup
Change
apache
inpreload_user
to whatever the right user is for you
Usage
Reboot your webserver (nginx / php-fpm / apache).
Misc
The preload script supports some options for testing.
OPTIONS
-h, --help show this screen
-d, --dry perform a dry run
-v, --verbose output info
-e, --errors output errors
Disclaimer
This plugin works well for me in my production setups but that does not necessarily mean it will work for you, please test thoroughly before using in production.