performance is an issue

Really? So what where the results of your benchmark? How much faster does it need to be? Did you profile the code and determine that this area is the bottleneck?

Although those questions look somewhat snide, in fact they are important. Unless you know what you are aiming for any why when trying to "make code efficient" you are most likely wasting time. If you need a 10 thousand times speed up then the place to look for a solution is likely to be vastly different than if you only need a 10 times speed up. But chances are there is a better solution (like cashing results in a database) that don't need this specific code to be any faster at all.

Dramatic improvements in code execution time don't generally come from fiddling with implementation. They come from reconsidering the problem and developing or finding a better algorithm. Almost always that requires an understanding of the bigger picture.

True laziness is hard work

In reply to Re: Fastest way to turn coordinate list into array by GrandFather
in thread Fastest way to turn coordinate list into array by brancusi

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.