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


in reply to Re^2: Out of Memory
in thread Out of Memory

5 million nulls, even if it was double byte should take up less than 10 mb of memory no? If array overhead was double that, we're still at 20 mb of memory per copy?

What is it about the workings of this second statement that causes it to consume so much memory?

I'd like to understand how that works if anyone happens to know.

Replies are listed 'Best First'.
Re^4: Out of Memory
by Anonymous Monk on Mar 28, 2013 at 17:27 UTC
    ($nulls) = $_ = /\0/g;

    Distilling it down a little more, this also causes the out of memory error.