Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^2: Fastest way to get input from a filehandle

by graff (Chancellor)
on Oct 29, 2005 at 18:34 UTC ( [id://503894]=note: print w/replies, xml ) Need Help??


in reply to Re: Fastest way to get input from a filehandle
in thread Fastest way to get input from a filehandle

Of course, if the question is being asked in the context of reading STDIN from a pipe (rather than from a keyboard), then there could be a good reason to figure out whether one method of reading is faster or slower than another, and a benchmark test would be worthwhile -- even if all it does is prove that there's hardly any difference.

And in that regard, the Benchmark module probably isn't necessary or even appropriate; the unix "time" command would probably do. Just put together a suitable test script that reads and processes data from STDIN, but accepts a command-line option to determine what sort of syntax to use for reading, then run a series of commands like:

feeder_process | time test-perl-reader diamond > /dev/null # (repeat several times, average the results) feeder_process | time test-perl-reader readline1 > /dev/null # (repeat, average the results) feeder_process | time test-perl-reader readline2 > /dev/null # (you know the drill...)
If the difference among the various averages is greater than the variance among test runs for any single method, then maybe there's a real difference in the efficiency of the different input methods.

But I would expect any differences to be a very small fraction of the overall pipeline time.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://503894]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-23 14:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found