Something sounds fishy (no pun intended) since your execution time does not change. Here are some suggestions:

1) Try reparsing the same data $x times in a loop and see if you get $x * .16 the execution time.

2) Show us your code - there may be something else happening.

3) Try using Benchmark

-UPDATE-

Looks like it is definitely start-up time. (using XML::Simple's pod example)

use Benchmark; use XML::Simple; use Time::HiRes qw( gettimeofday tv_interval ); my $t0 = [gettimeofday]; my $config = XMLin(); my $elapsed = tv_interval ( $t0 ); print "First Parsing took $elapsed seconds\n"; $config = undef; $t0 = [gettimeofday]; $config = XMLin(); $elapsed = tv_interval ( $t0 ); print "Second Parsing took $elapsed seconds\n"; timethis (1000, '$config = undef; $config = XMLin()'); __OUTPUT__ First Parsing took 0.312 seconds Second Parsing took 0.016 seconds timethis 1000: 6 wallclock secs ( 5.13 usr + 0.53 sys = 5.66 CPU) @ + 176.80/s (n=1000)

--

flounder


In reply to Re: XML(::Simple) Parsing Efficiency by flounder99
in thread XML(::Simple) Parsing Efficiency by billyak

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.