in reply to WWW::Mechanize::Firefox latency using RemoteObject

You could speed things up like this:
#!/usr/bin/perl use strict; use warnings; use WWW::Mechanize::Firefox; my $mechanize = WWW::Mechanize::Firefox->new( stack_depth => 0);
Mechanize keeps a history of every page with its state; also, it makes a clone of each Mech object. If set to 0, it won't keep that history. You can adjust it to meet your needs.

Replies are listed 'Best First'.
Re^2: WWW::Mechanize::Firefox latency using RemoteObject
by Corion (Patriarch) on Apr 03, 2011 at 17:18 UTC