I use the JSON package in a perl script that parses a long list of relatively short JSON strings, and I have profiled the process using Devel :: NYTProf. It seems that most of the time, the JSON string function is executed during parsing.
Are there any accelerations that I could use other than using the JSON package and try to speed it up by parsing it myself?
EDIT: The JSON package was installed on the system using cpanm . If there are any accelerations to optimize the installation process, they are also welcome.
performance json perl
719016
source share