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

Re^2: keep running out of memory, help a newbie!

by kixsnap (Novice)
on Feb 14, 2017 at 01:20 UTC ( [id://1181946]=note: print w/replies, xml ) Need Help??


in reply to Re: keep running out of memory, help a newbie!
in thread keep running out of memory, help a newbie!

not sure how else to do the loop, wouldnt a for(;;) be the same thing and end up the same way? or am i missing something?

Replies are listed 'Best First'.
Re^3: keep running out of memory, help a newbie!
by Cow1337killr (Monk) on Feb 14, 2017 at 01:52 UTC
    ... use constant LEVEL_1_LOOP_MAXIMUM => 1400; # This code keeps the +program from looping forever. my $level_1_loop_counter; FOLLOW_LEVEL_1_LINK: for ( $level_1_loop_counter = 1 ; $level_1_loop_counter <= LEVEL_1_LOOP_MAXIMUM ; $level_1_loop_counter++ ) { #------------------------------------------ print $fh_log "Level_1_loop_counter: $level_1_loop_counter\n"; if ( $level_1_loop_counter > LEVEL_1_LOOP_MAXIMUM ) { die "Runaway program.\n"; } ...

    Notice the belt and suspenders approach.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (7)
As of 2024-03-28 09:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found