Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Any help optimizing this slow code would be great.

Good advice on profiling aside, I would start with the query and database schema. A lot of time can get chewed up by an inefficient query, or one that could be sped up by adding indexes.

Look at the query

select text_id,gene_name,protein5,protein3 from protein where org_id=$orgid order by protein5 desc"
and ask two questions:
  1. Is there an index on org_id?
  2. Is it really necessary to have the database sort the results?
Unless org_id is indexed, the database must make a linear scan over the protein table. If the table is big, the scan can be slow. If the field is indexed, the retrieval will usually be considerably faster (except in cases where you're going to match most of the records anyway.)

I can't tell from your code whether it matters whether the query results are sorted or not. If it doesn't matter, drop the order by clause.

The non-SQL thing that jumped out was the redundant trig calculations. You're doing each sine and cosine calculation twice, where once would be sufficient.

Then profile.


In reply to Re: sloooowwwwww code! by dws
in thread sloooowwwwww code! 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":



  • 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 wandering the Monastery: (4)
As of 2024-04-23 22:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found