There is a brand new
patch
that speeds up repeated calls to
unshift by a very large
margin. This came out of the PerlMonks conversation at
japhy looks at av.c (not av.h), and my original interest in this came out of
a chatter conversation some time ago.
What I find particularly amusing is that this patch is
based on making unshift bigger, slower, and wasteful
of memory. Optimizations are certainly not always obvious!
The way it works is that when you call unshift and it
needs to extend your array, it adds to the request the
size of the current array. The reason is that extending
the array at the front involves moving the whole thing,
and this is expensive so you want to do it as seldom as
possible. In big-O notation with this change
push @foo, 1 for 1..$n;
takes O(n) instead of O(n*n). :-)
UPDATE
The patch has been accepted.
It is in the current development snapshot.
:-)
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.