Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Looks like you can do this quicker with map:

Perl Code:
#! /usr/bin/perl use strict ; use warnings ; $|++ ; use Benchmark qw( :all ) ; # Construct the test string. our @arr ; for ( 1..100_000 ) { push @arr, "foo, bar, zoot, blarg,\n" } cmpthese( 10_000_000, { 'Mine' => \&mine, 'Yours' => \&yours } ) ; sub mine { local @arr ; return map { split /,\s*|\n/ } @arr ; } sub yours { # Roughly. local @arr ; my @word_list ; while ( @arr ) { chomp; push @word_list, split ", "; } \@word_list; }
Results:
Benchmark: timing 10000000 iterations of Mine, Yours... Mine: 9 wallclock secs ( 8.82 usr + 0.02 sys = 8.84 CPU) @ 11 +31221.72/s (n=10000000) Yours: 25 wallclock secs (21.95 usr + 0.04 sys = 21.99 CPU) @ 45 +4752.16/s (n=10000000) Rate Yours Mine Yours 454752/s -- -60% Mine 1131222/s 149% --

_______________
DamnDirtyApe
Those who know that they are profound strive for clarity. Those who
would like to seem profound to the crowd strive for obscurity.
            --Friedrich Nietzsche

In reply to Re: a method to get words from a file into an array by DamnDirtyApe
in thread a method to get words from a file into an array by aufrank

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-19 15:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found