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

Re^2: Server side computational suggestion

by roboticus (Chancellor)
on Mar 09, 2010 at 22:02 UTC ( [id://827633]=note: print w/replies, xml ) Need Help??


in reply to Re: Server side computational suggestion
in thread Server side computational suggestion

Just to amplify on what tirwhan said: Get the job done before making it faster. Often, you'll find that it'll be fast enough. When it isn't, you'll often find that:

  1. Adding CPU/RAM/DISK/whatever may be cheaper than coding time.
  2. Improving the algorithm may be enough to make the system fast enough without recoding in a new language.
  3. Your processing time may be dominated by I/O time, making the language you choose irrelevent.

Back in the old days, I often hand-optimized code in assembler or C to make it fast enough. Now I rarely find the need. I frequently do some serious processing on fairly large files, and the processing time is small compared to the I/O time. So it would be faster in my case to get faster boxes of disks rather than spend any time on updating algorithms, translation, etc.

...roboticus

  • Comment on Re^2: Server side computational suggestion

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://827633]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-20 04:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found