I'm working with 1.6 gig and larger files.
If I read a file in with: @array=<INFILE>; everything bogs down and often freezes beyond my patients.
If I read the file in with:
while (<INFILE>)
{
push @array, $_;
}
all is happy. It still takes a few minutes to load a file but it works.
Does anybody know what is going on here?
Ewok