Last active
October 21, 2015 14:52
-
-
Save sdieunidou/ecb6cf98dac28e3343a0 to your computer and use it in GitHub Desktop.
PHP 5.6+ opcache - settings for symfony2 app in production
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# conf.d/05-opcache.ini | |
opcache.memory_consumption=1024 | |
opcache.interned_strings_buffer=64 | |
opcache.max_accelerated_files=20000 | |
opcache.revalidate_freq=0 | |
opcache.validate_timestamps=0 | |
opcache.fast_shutdown=1 | |
opcache.enable_cli=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment