Skip to content

Commit 3d82a61

Browse files
committed
Fixed the Table of Contents of the performance article
1 parent 325c6d7 commit 3d82a61

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

performance.rst

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,13 @@ performance checklists.
1111
Symfony Application Checklist
1212
-----------------------------
1313

14+
These are the code and configuration changes that you can make in your Symfony
15+
application to improve its performance:
16+
1417
#. :ref:`Install APCu Polyfill if your server uses APC <performance-install-apcu-polyfill>`
1518
#. :ref:`Enable APC Caching for the Autoloader <performance-autoloader-apc-cache>`
1619
#. :ref:`Use Bootstrap Files <performance-use-bootstrap-files>`
1720

18-
Production Server Checklist
19-
---------------------------
20-
21-
#. :ref:`Use the OPcache byte code cache <performance-use-opcache>`
22-
#. :ref:`Configure OPcache for maximum performance <performance-configure-opcache>`
23-
#. :ref:`Don't check PHP files timestamps <performance-dont-check-timestamps>`
24-
#. :ref:`Configure the PHP realpath Cache <performance-configure-realpath-cache>`
25-
#. :ref:`Optimize Composer Autoloader <performance-optimize-composer-autoloader>`
26-
2721
.. _performance-install-apcu-polyfill:
2822

2923
Install APCu Polyfill if your Server Uses APC
@@ -108,6 +102,18 @@ rebuilt after updating the vendor libraries via the ``composer install`` command
108102
course, if this feature is disabled in the byte code cache (e.g.
109103
``apc.stat=0`` in APC), there is no longer a reason to use a bootstrap file.
110104

105+
Production Server Checklist
106+
---------------------------
107+
108+
These are the changes that you can make in your production server to improve
109+
performance when running Symfony applications:
110+
111+
#. :ref:`Use the OPcache byte code cache <performance-use-opcache>`
112+
#. :ref:`Configure OPcache for maximum performance <performance-configure-opcache>`
113+
#. :ref:`Don't check PHP files timestamps <performance-dont-check-timestamps>`
114+
#. :ref:`Configure the PHP realpath Cache <performance-configure-realpath-cache>`
115+
#. :ref:`Optimize Composer Autoloader <performance-optimize-composer-autoloader>`
116+
111117
.. _performance-use-opcache:
112118

113119
Use the OPcache Byte Code Cache

0 commit comments

Comments
 (0)