in reply to Re: Optimizing existing Perl code (in practise)
in thread Optimizing existing Perl code (in practise)

For simple file read/write operation like in this example File::Slurp is the winner:
use File::Slurp; my $text = read_file($filename);

--
Ilya Martynov (http://martynov.org/)