1
perlで行単位でファイルを読み込む最も速い方法は何ですか?ファイルを行単位で読み込む最も速い方法は何ですか?
open(my $fh, '<', 'fit.log') or die;
1. while(<$fh>){
blah, blah, blah
}
2. while(defined(my $line = <$filehandle>)){
blah, blah, blah
}
is #2 the same as #1?????
3. Tie::File
4. Any others?
なぜ知りたいですか? – ysth