Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

how to improve the performance of a perl program

by ghosh123 (Monk)
on Aug 05, 2013 at 15:26 UTC ( [id://1047920]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        return if not ... a cheap test...;
        return if not ... a more expensive test..;
        my $foo = ..initialization...;
        ...body of sub routine ...
    
  2. or download this
    return exists $hash{$a}{$key}?$hash{$a}{$key} : undef;
    return $hash{$a}{$key}; # instead of above
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1047920]
Front-paged by Arunbear
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (2)
As of 2024-04-26 04:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found