Skip to content

Commit a85e16d

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Fixed the Table of Contents of the performance article
2 parents 17ff707 + 9b7eee9 commit a85e16d

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

performance.rst

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,12 @@ 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:`Dump the service container into a single file <performance-service-container-single-file>`
1619

17-
Production Server Checklist
18-
---------------------------
19-
20-
#. :ref:`Use the OPcache byte code cache <performance-use-opcache>`
21-
#. :ref:`Use the OPcache class preloading <performance-use-preloading>`
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-
2720
.. _performance-install-apcu-polyfill:
2821

2922
Install APCu Polyfill if your Server Uses APC
@@ -74,6 +67,19 @@ container into a single file, which could improve performance when using
7467
// ...
7568
$container->setParameter('container.dumper.inline_factories', true);
7669
70+
Production Server Checklist
71+
---------------------------
72+
73+
These are the changes that you can make in your production server to improve
74+
performance when running Symfony applications:
75+
76+
#. :ref:`Use the OPcache byte code cache <performance-use-opcache>`
77+
#. :ref:`Use the OPcache class preloading <performance-use-preloading>`
78+
#. :ref:`Configure OPcache for maximum performance <performance-configure-opcache>`
79+
#. :ref:`Don't check PHP files timestamps <performance-dont-check-timestamps>`
80+
#. :ref:`Configure the PHP realpath Cache <performance-configure-realpath-cache>`
81+
#. :ref:`Optimize Composer Autoloader <performance-optimize-composer-autoloader>`
82+
7783
.. _performance-use-opcache:
7884

7985
Use the OPcache Byte Code Cache

0 commit comments

Comments
 (0)