Subject: | Premature loading of Config::MVP::Section causes substantial performance penalty other commands |
`use Config::MVP::Section` invokes `use Moose`.
Which means having this command installed gives a significant performance penalty to `dzil version` and similar low-level commands. ( Roughly a difference of 1 second ).
Difference of commenting out that line?
strace -e trace=open dzil version |& grep open | wc -l
317
strace -e trace=open dzil version |& grep open | wc -l
205