@@ -11,19 +11,13 @@ 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: `Enable APC Caching for the Autoloader <performance-autoloader-apc-cache >`
16
19
#. :ref: `Use Bootstrap Files <performance-use-bootstrap-files >`
17
20
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
-
27
21
.. _performance-install-apcu-polyfill :
28
22
29
23
Install APCu Polyfill if your Server Uses APC
@@ -108,6 +102,18 @@ rebuilt after updating the vendor libraries via the ``composer install`` command
108
102
course, if this feature is disabled in the byte code cache (e.g.
109
103
``apc.stat=0 `` in APC), there is no longer a reason to use a bootstrap file.
110
104
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
+
111
117
.. _performance-use-opcache :
112
118
113
119
Use the OPcache Byte Code Cache
0 commit comments