in reply to Re^3: Why so slow when using Perl/Tk?
in thread Why so slow when using Perl/Tk?
I know what you mean. In the end I suspect that it was just because when I tried sending the output as plain text it greatly reduced the number of lines I sent out. All the HTMLSTUFF was removed and my do_this sub was reduced to a few lines.
sub do_this() { open FILE, "> $filename" or die "ERROR WRITTING FILE: $filename\nSyste +m reported $!"; print FILE "\n"; foreach (sort keys(%stuff1) ) { print FILE "$stuff1{$_} | ";} print FILE "\n"; foreach (sort keys(%stuff2) ) { print FILE "$stuff2{$_} | ";} close FILE; system "start /b $filename"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Why so slow when using Perl/Tk?
by Argel (Prior) on Jul 29, 2009 at 00:31 UTC |