I have some code basically doing this:
$mech->get($url); foreach my $form ($mech->forms()) { print "<form "...; foreach my $input ($form->{elements}) { print "<input..." foreach my $attr ($input->{attributes}) { print ... } } }
I'm using an existing form, and filtering some bits of it out, and spitting out HTML which is approximately the same on the other end. The _real_ page is too slow to load for me, so I prefer to just load my fake form and submit _it_.

This worked OK with plain ol' WWW::Mechanize. But, Mechanize::Firefox takes many seconds to do the same thing. It isn't CPU bound, though. There just seem to be a lot of transactions back and forth with the browser when I do this. I assume that each of the $foo->{bar} accesses is getting morphed in to a few calls in to the browser, and they add up to be significant.

Any thoughts on reducing the number of transactions, reducing the latency, or quicker ways to do this?

Well, I figured it out. Short story, the kernel is holding on to small amounts of data trying to increase throughput overall. More details here: http://groups.google.com/group/mozlab/browse_thread/thread/f7389b14bc1426ad?hl=en


In reply to WWW::Mechanize::Firefox latency using RemoteObject by hansendc

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.