Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Data check or sleep

by benn (Vicar)
on Aug 26, 2003 at 12:50 UTC ( [id://286683]=note: print w/replies, xml ) Need Help??


in reply to Data check or sleep

In cases like this, where the primary purpose is something straightforward (as stated in the question), I'd prefer to split up the code into 'obvious' subroutines, so that the main block of code looks something like this...
my $dbh = DBI->connect($connection_string); my $dbh2 = DBI->connect($connection_string2); while (1) { my $count = get_table_count($dbh); do_table_copy($dbh,$dbh2) if $count; sleep(15 * 60); }
Note that you don't need to sleep *only* if $count == 0 - if you perform the copy, presumably you're not going to want to bother checking again for another 15 minutes.

Cheers, Ben.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-24 02:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found