in reply to Re^2: Using File::ReadBackwards or equivalent on pre-existing file handle
in thread Using File::ReadBackwards or equivalent on pre-existing file handle

Difficult to say without testing. I think that slurping the file from the FH directly into an array will be slightly faster than pushing or unshifting it line by line. Then poping the lines to be printed might be faster than using reverse, but only a benchmark can really say. You might even get diffrent results with differents versions of Perl. Overall, the difference is likely to be small or almost unsignificant.