in reply to Re^2: 5.10.0 regex slowdown
in thread 5.10.0 regex slowdown
It would neat to see the re=debug dump of your pattern, piped into grep TRIE to see whats going on. I suspect that you can do it easiest with perl -c on code with a use re 'debug'.
perl -c -Mre=debug SCRIPT 2>&1 | grep TRIE
Should do it.
Actually if you could grep for JUMP and JMP too it would be good.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: 5.10.0 regex slowdown
by BrowserUk (Patriarch) on Feb 21, 2008 at 12:21 UTC | |
|
Re^4: 5.10.0 regex slowdown
by shmem (Chancellor) on Feb 21, 2008 at 13:00 UTC |