@@ -11,19 +11,12 @@ performance checklists.
11
11
Symfony Application Checklist
12
12
-----------------------------
13
13
14
+ These are the code and configuration changes that you can make in your Symfony
15
+ application to improve its performance:
16
+
14
17
#. :ref: `Install APCu Polyfill if your server uses APC <performance-install-apcu-polyfill >`
15
18
#. :ref: `Dump the service container into a single file <performance-service-container-single-file >`
16
19
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
-
27
20
.. _performance-install-apcu-polyfill :
28
21
29
22
Install APCu Polyfill if your Server Uses APC
@@ -79,6 +72,19 @@ container into a single file, which could improve performance when using
79
72
// ...
80
73
$container->setParameter('container.dumper.inline_factories', true);
81
74
75
+ Production Server Checklist
76
+ ---------------------------
77
+
78
+ These are the changes that you can make in your production server to improve
79
+ performance when running Symfony applications:
80
+
81
+ #. :ref: `Use the OPcache byte code cache <performance-use-opcache >`
82
+ #. :ref: `Use the OPcache class preloading <performance-use-preloading >`
83
+ #. :ref: `Configure OPcache for maximum performance <performance-configure-opcache >`
84
+ #. :ref: `Don't check PHP files timestamps <performance-dont-check-timestamps >`
85
+ #. :ref: `Configure the PHP realpath Cache <performance-configure-realpath-cache >`
86
+ #. :ref: `Optimize Composer Autoloader <performance-optimize-composer-autoloader >`
87
+
82
88
.. _performance-use-opcache :
83
89
84
90
Use the OPcache Byte Code Cache
0 commit comments