How long (# of lines) do you think data files should get to be before you tell the script to start a new file? I'm worried about load time when a new line is added. I figure that telling a script:
print file "blah\n";
foreach (@file) { print file "@file\n"; }
.. takes a long time to load if the file has 10,000+ lines.. but I could be wrong because I don't know how Perl works.
thanks.
print file "blah\n";
foreach (@file) { print file "@file\n"; }
.. takes a long time to load if the file has 10,000+ lines.. but I could be wrong because I don't know how Perl works.
thanks.