http://www.perlmonks.org?node_id=1054632


in reply to Out Of Memory

I suspect you may be able to solve your issue by processing the individual records rather than slurping the entire input file at once, but without code and sample input we can't really provide you with more than generalisations.

print "Good ",qw(night morning afternoon evening)[(localtime)[2]/6]," fellow monks."

Replies are listed 'Best First'.
Re^2: Out Of Memory
by Laurent_R (Canon) on Sep 18, 2013 at 11:22 UTC

    I definitely agree with this. Most of the files I am working with would give me the "out of memory" message if I tried to slurp then entirely into memory. They are just way too large. Processing one line at a time is quite often the solution. But I can't say more without seeing the program and a data sample.