
Gregorio
User
Aug 10, 2000, 12:04 PM
Post #1 of 5
(802 views)
|
|
The need for speed
|
Can't Post
|
|
I made a script that uses get commands with lwp::simple to get information from 5 different pages, i.e. my $pageurl = "http://www.sitename.com"; my $page = get ($pageurl); it also uses about 35-40 matches, ie. if ($page =~ m/<TR><TD>([^<]+)<.TD><.TR>/) { ($information) = ($1); } It works, EXCEPT it takes about 2 minutes to load, not good, is there anyway to speed up the script or get faster? Any recommendations?
|