diff --git a/performance.rst b/performance.rst index 29f88614d05..3d1875d45b4 100644 --- a/performance.rst +++ b/performance.rst @@ -60,7 +60,7 @@ container into a single file, which could improve performance when using # config/services.yaml parameters: # ... - container.dumper.inline_factories: true + .container.dumper.inline_factories: true .. code-block:: xml @@ -72,7 +72,7 @@ container into a single file, which could improve performance when using - true + true @@ -81,10 +81,15 @@ container into a single file, which could improve performance when using // config/services.php // ... - $container->parameters()->set('container.dumper.inline_factories', true); + $container->parameters()->set('.container.dumper.inline_factories', true); .. _performance-use-opcache: +.. tip:: + + The ``.`` prefix denotes a parameter that is only used during compilation of the container. + See :ref:`Configuration Parameters ` for more details. + Use the OPcache Byte Code Cache ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~