Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setup para opcache en la version de php7 #1

Closed
keopx opened this issue Sep 4, 2016 · 1 comment
Closed

Setup para opcache en la version de php7 #1

keopx opened this issue Sep 4, 2016 · 1 comment
Assignees
Labels

Comments

@keopx
Copy link
Owner

keopx commented Sep 4, 2016

Es necesario añadir las mejoras de opcache para la cache de php basada en las recomendaciones para Drupal.

Aquí la configuración:

opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable_cli=1
# set recommended PHP.ini settings
# see https://secure.php.net/manual/en/opcache.installation.php
RUN { \
        echo 'opcache.memory_consumption=128'; \
        echo 'opcache.interned_strings_buffer=8'; \
        echo 'opcache.max_accelerated_files=4000'; \
        echo 'opcache.revalidate_freq=60'; \
        echo 'opcache.fast_shutdown=1'; \
        echo 'opcache.enable_cli=1'; \
} > /usr/local/etc/php/conf.d/opcache-recommended.ini
@keopx keopx self-assigned this Sep 4, 2016
@keopx keopx added the feature label Sep 4, 2016
keopx added a commit that referenced this issue Sep 10, 2016
@keopx
Copy link
Owner Author

keopx commented Sep 10, 2016

Solved adding opcache-recommended.ini for Drupal

Commit: 7ec64d5

@keopx keopx closed this as completed Sep 10, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant