From 3d82a610792c259fc866ae1e4d2c550f86d1d93c Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Sat, 22 Feb 2020 16:29:18 +0100 Subject: [PATCH] Fixed the Table of Contents of the performance article --- performance.rst | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/performance.rst b/performance.rst index 1feb0bd4025..03a223771f4 100644 --- a/performance.rst +++ b/performance.rst @@ -11,19 +11,13 @@ performance checklists. Symfony Application Checklist ----------------------------- +These are the code and configuration changes that you can make in your Symfony +application to improve its performance: + #. :ref:`Install APCu Polyfill if your server uses APC ` #. :ref:`Enable APC Caching for the Autoloader ` #. :ref:`Use Bootstrap Files ` -Production Server Checklist ---------------------------- - -#. :ref:`Use the OPcache byte code cache ` -#. :ref:`Configure OPcache for maximum performance ` -#. :ref:`Don't check PHP files timestamps ` -#. :ref:`Configure the PHP realpath Cache ` -#. :ref:`Optimize Composer Autoloader ` - .. _performance-install-apcu-polyfill: Install APCu Polyfill if your Server Uses APC @@ -108,6 +102,18 @@ rebuilt after updating the vendor libraries via the ``composer install`` command course, if this feature is disabled in the byte code cache (e.g. ``apc.stat=0`` in APC), there is no longer a reason to use a bootstrap file. +Production Server Checklist +--------------------------- + +These are the changes that you can make in your production server to improve +performance when running Symfony applications: + +#. :ref:`Use the OPcache byte code cache ` +#. :ref:`Configure OPcache for maximum performance ` +#. :ref:`Don't check PHP files timestamps ` +#. :ref:`Configure the PHP realpath Cache ` +#. :ref:`Optimize Composer Autoloader ` + .. _performance-use-opcache: Use the OPcache Byte Code Cache