in reply to Re^2: Parsing 12GB Entourage database in pieces...
in thread Parsing 12GB Entourage database in pieces...

Interesting...

perl5.8.8 -wle '$s = "x" x 40_000; $s =~ /^(.)(\1*)/ and print length $2' # (segfaults) perl5.10.0 -wle '$s = "x" x 40_000; $s =~ /^(.)(\1*)/ and print length $2' Complex regular subexpression recursion limit (32766) exceeded at -e l +ine 1. 32767

Well, at least it seems to warn when this limitation affects the result...

Replies are listed 'Best First'.
Re^4: Parsing 12GB Entourage database in pieces...
by ikegami (Patriarch) on Aug 29, 2008 at 00:21 UTC
    I believe p5p is working on a patch to change that warning to a die.