in reply to Re: Speed comparison between printing to STDOUT and printing to a filehandle
in thread Speed comparison between printing to STDOUT and printing to a filehandle
You can verify this for yourself under Unix by comparing the output of the following two commands:
perl -e 'print "hi\n" while sleep 1' perl -e 'print "hi\n" while sleep 1' | perl -pe 1
|
|---|