in reply to Re^5: Perl script compressor
in thread Perl script compressor

Okay, but if a perl script has to be unzipped before it can run, then this takes time. My compact perl code doesn’t modify the code’s structure or anything. It just removes spaces and renames variables. The perl script can run the same way, and no decompression is necessary.

Replies are listed 'Best First'.
Re^7: Perl script compressor
by GrandFather (Saint) on Dec 10, 2019 at 05:06 UTC

    Your assessment is correct, but your bigger picture analysis is fundamentally flawed. You have already spent many orders of magnitude more of your time on this project than the total processor time likely to be saved over the lifetime of the code to be compressed. As davido has demonstrated the per-load time savings is completely inconsequential.

    Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond
Re^7: Perl script compressor
by marto (Cardinal) on Dec 10, 2019 at 06:41 UTC

    "My compact perl code doesn’t modify the code’s structure or anything. It just removes spaces and renames variables."

    It also doesn't address any of the problems you've decided exist, even though it's been it's been explained to you that your understanding of the process is wrong. But it's not the first time we've been in this situation.