Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Ref to hash entries are faster?

by ikegami (Patriarch)
on Nov 29, 2006 at 23:29 UTC ( [id://586841]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $Contracts{$key}[STATE]
    
  2. or download this
    my $r = $Contracts{$key};
    $r->[STATE]
    
  3. or download this
    $Contracts{$key}
    
  4. or download this
    my $r = \$Contracts{$key};
    $$r
    
  5. or download this
    use strict;
    use warnings;
    ...
       lookup => $lookup,
       refit  => $refit,
    });
    
  6. or download this
    >perl 586841.pl 500 4 -5
             Rate lookup  refit
    ...
            Rate lookup  refit
    lookup 499/s     --   -19%
    refit  613/s    23%     --
    

Log In?
Username:
Password:

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

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

    No recent polls found