The point is that $` with friends slow down every other pattern as well. If you use /p you will still have a comparatively slow match, but it won't effect the other matches.

use 5.010; use strict; use warnings; use Benchmark qw(cmpthese timethese); my $r1 = timethese( -1, { p_before => sub { 'hola juan' =~ /ju/p }, no_p_before => sub { 'hola juan' =~ /ju/ }, }, 'none'); eval '$`'; my $r2 = timethese( -1, { p_after => sub { 'hola juan' =~ /ju/p }, no_p_after => sub { 'hola juan' =~ /ju/ }, }, 'none'); cmpthese({ %$r1, %$r2 }); __END__ Rate p_before no_p_after p_after no_p_before p_before 1067899/s -- -2% -2% -80% no_p_after 1084733/s 2% -- -1% -80% p_after 1091288/s 2% 1% -- -79% no_p_before 5318863/s 398% 390% 387% --
As you see, the pattern with /p and the patterns executed after $` has been seen are equally fast, and that makes sense since they do the same work. The pattern without /p and before $` is however significantly faster, since it does not have to compute the extra match variables.

Hope this helps,
lodin


In reply to Re: The /p modifier in Perl5.10 regexps by lodin
in thread The /p modifier in Perl5.10 regexps by casiano

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.