In debug mode, when the container is compiled, an XML file is automatically generated. This file
is used by various commands like:
- `debug:container`
- `lint:container`
- `config:dump-reference`
- `debug:autowiring`
- `debug:router`
But generating this file comes with a price. When your container grows, the XML file grows, and the
time to compile this file increases.
In our large application this file became 20MB and took 2 seconds to generate every time the cache
needed to be recompiled. For us, the benefit of this file does not outweigh the decrease in
performance.
Therefore I'd like to disable this dumping and accept the consequences for less debug possibilities.
To disable this, one can set the `debug.container.dump` parameter to `false`.