in reply to Re^4: How can you sysread an entire file?
in thread How can you sysread an entire file?
It won't affect your IO count but
my $rec;foreach(@test){$rec.=$_."\n";}
Is much better coded as
my $rec = join "\n", @test;
roughly 3 times faster on 1000 elements.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^6: How can you sysread an entire file?
by NeilF (Sexton) on Jan 14, 2006 at 19:54 UTC |