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

I'd never choose the second method. With the first, it's immediately clear what it does. With the second, it isn't. And somehow I doubt it's faster - it certainly doesn't look like it, as you first make a list of all the lines, then join them together, meaning you get more than double the memory usage. I'd rather do
my $text = do {local (@ARGV, $/) = $file; <>};

"Still do it in Perl" isn't a goal, IMO.

Abigail

Replies are listed 'Best First'.
Re: Re: Optimizing existing Perl code (in practise)
by IlyaM (Parson) on Aug 19, 2002 at 21:05 UTC