Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Re: A (memory) poor man's hash

by BrowserUk (Patriarch)
on Nov 22, 2003 at 08:00 UTC ( [id://309128]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $hash{ $_ } = undef for 1 .. 1_000_000;
    
  2. or download this
    undef $foo{ $_ } for 1 .. 1_000_000;
    
  3. or download this
    use DB_File;
    
    ...
    1069482523
    1069482799  # 276 secs (4.6 mins)
     1000000
    
  4. or download this
    print time; 
    $hash{ substr $_, 0, 4 } .= $/. $_ for 1 .. 1_000_000; $hash{$_} .= $/
    + for keys %hash; 
    ...
    1069484612
    1069484656 # 44 secs.
     1000000
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (7)
As of 2024-04-19 16:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found