http://www.perlmonks.org?node_id=999721


in reply to How fast is pp/PAR::Packer at packing DateTime::Format::ISO8601 for you?

$ time pp -e " use strict; use warnings; use Getopt::Long; use DateTime::Format::ISO8601; print qq{$_\n} for %INC; "

real    0m11.527s
user    0m6.153s
sys     0m0.900s
I suspect something else is slowing down file access on your system. Use Sysinternals Filemon or similar to detect this.
  • Comment on Re: How fast is pp/PAR::Packer at packing DateTime::Format::ISO8601 for you?

Replies are listed 'Best First'.
Re^2: How fast is pp/PAR::Packer at packing DateTime::Format::ISO8601 for you?
by Anonymous Monk on Oct 18, 2012 at 12:53 UTC

    I suspect something else is slowing down file access on your system. Use Sysinternals Filemon or similar to detect this.

    I have, it doesn't appear to :) Though I will schedule some downtime later to run chkdsk etc

      The program runs in ~1 second (perl -e ... ) like you'd expect, its the packing that takes forever -- if something else was slowing things down, the running would take forever also
        My test: 00:01:22,75 without DateTime 00:32:31,00 with DateTime