Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: How to process with huge data's

by TomDLux (Vicar)
on Oct 04, 2011 at 17:44 UTC ( [id://929613]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    while ( my $input_text = <INP> ) { ....
    
  2. or download this
    while ( my $line = <INP> ) { 
        chomp $input;
    ...
            $queries++;
        }
        ...
    
  3. or download this
    # instead of ... 
            else
    ...
                my $pair = join ',', grep { defined } ( $fnum, $snum );
                $connectiontext .= $pair . '|';
            }
    
  4. or download this
    push @allPairs, grep { defined } ( $fnum, $snum );
    
    ...
    # or a trailing fnum
    
    my @matches = grep ( scalar @$_ == 2 && $_->[1] == $fnum } @allpairs
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (10)
As of 2024-04-24 09:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found