in reply to How Perl Optimize your code & some code TIPS ;-P
Other thing, if you want to process the lines, don't cat all the file + inside a @array, to after this process them! Is better to read and p +rocess, this is faster and use less memory: open (FLHD,"$0") ; while (my $line = <FLHD>) { my ($x , $y , $z) = split("::" , $line) ; }
|
|---|