Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Optimising processing for large data files.

by BrowserUk (Patriarch)
on Apr 10, 2004 at 06:29 UTC ( [id://344087]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #! perl -slw
    use strict;
    ...
        $ch = getc(FH);
    }
    close FH;
    
  2. or download this
    #! perl -slw
    use strict;
    ...
        $ch = getc(FH);
    }
    close FH;
    
  3. or download this
    #! perl -slw
    use strict;
    ...
    while ( sysread( FH, $ch, 1 ) ) {
    }
    close FH;
    
  4. or download this
    #! perl -slw
    use strict;
    ...
        }
    }
    close FH;
    
  5. or download this
    #! perl -slw
    use strict;
    ...
        }
    }
    close FH;
    
  6. or download this
    #! perl -slw
    use strict;
    ...
    }
    
    close FH;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (6)
As of 2024-04-23 18:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found