Hello Monks

I came across the MCE::Map utility and wanted to try out.

Here's what I see...

testuser@linux-mint:~$ cat just_map.pl use strict; use warnings; my @biglist = (1..10000000); my @squared_big_list = map { $_ * $_ } @biglist; testuser@linux-mint:~$ time perl just_map.pl real 0m1.743s user 0m1.496s sys 0m0.248s testuser@linux-mint:~$ cat mce_map.pl use strict; use warnings; use MCE::Map; my @biglist = (1..10000000); my @squared_big_list = mce_map { $_ * $_ } @biglist; testuser@linux-mint:~$ time perl mce_map.pl real 0m5.401s user 0m16.008s sys 0m4.658s testuser@linux-mint:~$

Why is the time more with MCE::Map? I tried it with various versions of perl (5.16, 5.24, 5.32 and 5.34) and I get similar results....Either I'm reading something wrong or my understanding is messed up.


In reply to I thought MCE::Map is faster than usual map. What am I missing? by Anonymous Monk

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.