Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: eval failing to match regex after sometime

by Kc12349 (Monk)
on Oct 05, 2011 at 17:52 UTC ( [id://929848]=note: print w/replies, xml ) Need Help??


in reply to eval failing to match regex after sometime

One thought I have is that there may potentially be a memory issue. How often is the /g modifier used? This modifier will remember position and in some cases this may lead to a growing memory foot print.

I might try running the script without including /g to try to rule that out.

Beyond this, an individual regex could cause an issue if you are not validating them in any way. In addition to global matching something like a recursive regex could create an infinite loop.

What type of regex patterns are potentially being passed in? If you can find a way of seeing what patterns were processed just before the problem begins this would likely be helpful.

If all else fails, you could also look at unrolling your recursion. This thread is a good starting point should you venture down that road. Turning a recursive function into an iterator

After some aggravation in writing recursive node structure processors, I now in practice write them using a stack algorithm instead. I believe the above thread likely has an example of such an approach.

  • Comment on Re: eval failing to match regex after sometime

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://929848]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-04-23 19:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found