Why is my Perl regex using so much memory? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T15:17:00Z http://stackoverflow.com/feeds/question/165660 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/165660/why-is-my-perl-regex-using-so-much-memory 5 Why is my Perl regex using so much memory? Ryan O 2008-10-03T04:10:22Z 2008-12-26T20:04:10Z <p>I'm running a regular expression against a large scalar. Though this match isn't capturing anything, my process grows by 30M after this match:</p> <pre><code># A if (${$c} =~ m/\G&lt;&lt;\s*/cgs) { #B ... } </code></pre> <p><code>$c</code> is a reference to a pretty big scalar (around 21M), but I've verified that <code>pos(${$c})</code> is in the right place and the expression matches at the first character, with <code>pos(${$c})</code> being updated to the correct place after the match. But as I mentioned, the process has grown by about 30M between #A and #B, even though I'm not capturing anything with this match. Where is my memory going?</p> <p>Edit: Yes, use of <code>$&amp;</code> was to blame. We are using Perl 5.8.8, and my script was using <a href="http://search.cpan.org/dist/Getopt-Declare" rel="nofollow">Getopt::Declare</a>, which uses the built-in <a href="http://search.cpan.org/dist/Text::Balanced" rel="nofollow">Text::Balanced</a>. The 1.95 version of this module was using <code>$&amp;</code>. The 2.0.0 version that ships with Perl 5.10 has removed the reference to <code>$&amp;</code> and alleviates the problem.</p> http://stackoverflow.com/questions/165660/why-is-my-perl-regex-using-so-much-memory/165681#165681 19 Answer by pjf for Why is my Perl regex using so much memory? pjf 2008-10-03T04:21:32Z 2008-10-03T04:21:32Z <p>Just a quick sanity check, are you mentioning $&amp;, $` or $' (sometimes called $MATCH, $PREMATCH and $POSTMATCH) anywhere in your code? If so, Perl will copy your entire string for <em>every</em> regular expression match, just in case you want to inspect those variables.</p> <p>"In your code" in this case means indirectly, including using modules that reference these variables, or writing <code>use English</code> rather than <code>use English qw( -no_match_vars )</code>.</p> <p>If you're not sure, you can use the <a href="http://search.cpan.org/perldoc?Devel::SawAmpersand" rel="nofollow">Devel::SawAmpersand</a> module to determine if they have been used, and <a href="http://search.cpan.org/perldoc?Devel::FindAmpersand" rel="nofollow">Devel::FindAmpersand</a> to figure out <em>where</em> they are used.</p> <p>There may be other reasons for the increase in memory (which version of Perl are you using?), but the match variables will definitely blow your memory if they're used, and hence are a likely culprit.</p> <p>Cheerio,</p> <p><em>Paul</em></p>