Well, there is not much I can contribute... because in my eyes, optimization is best done by using better algorithmns and datastructures...
Before optimisation, it might help quite a bit finding what to optimize. Maybe the Module Devel::DProf might help you finding which subs are called how often and how much time it did. Then you could decide if there's a better algorithm, or if it's worth implementing this sub in C or the like or even using external programs which perform better for a certain problem. Or it is possible to run Tasks parallel (maybe on a multi-cpu-machine)?
$reverseString = reverse($string);
instead of:
$reverseString = join("", reverse split(//, $string);
Try to use good sorting algorithms, e.g. the Schwartzian Transform (or Guttman Rosler Transform) or the Orcish Maneuvre.
Try not to use tie's.
Try caching data
Try eq instead of =~ /^...$/
Try not to use $&, $` and $´
My basic feelings about optimization are: buy a faster machine, because it often is cheaper than optimisation :-)
Best regards,
perl -le "s==*F=e=>y~\*martinF~stronat~=>s~[^\w]~~g=>chop,print"
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.