Matthew Wilson has some good advice in this thread on A good performance architecture ?.


Don’t worry too much about performance in your design phase. Dont ignore it of couse. Implement a smart design and it will alow for the changes that may ha
ve to be made for performance.

Based on my experiences, I tend to agree. There are often too many variables still outstanding during the design phase that would prevent any non-high lev
el performance choices from being made. It’s difficult to tune for performance unless you have intimate knowledge of the various components and their requ
irements. This type of knowledge isn’t typically available during the design phase of many projects. Try and understand the limitations of the particular
technology you’re considering, but don’t allow the limitations to force you into making silly design decisions.

Design and implement a solid flexible architecture (easier said than done). Implement iteratively where possible, getting feedback and usage statistics fr
om the prospective enduser(s) as you go. Use the information gathered at each iteration to further solidify your implementation, allowing you to make the
necessary changes only as required.


Leave a Comment




  • Windows Live Writer isn’t bad Until recently, the bulk of my writing was done on a Mac using Ecto.  I was looking for a suitable publishing tool for Windows and was directed towards ...

  • Pet Peeve: Don’t email my password to me in plain text You know the drill. Signup for some random service on the internet Receive a confirmation email with your account information or Forget a password for some random service ...

  • Eclipise Memory Analyzer (MAT) I must say the Eclipse Memory Analyzer looks pretty slick. There is some pretty good material over on the developers blog. Lastly, there was a talk on it ...

  • Open-source Web-based Code Review Tool: Rietveld Guido van Rossum, of Python fame, has recently released a Django-based application that enables web-based code reviews... Rietveld. It supports any language and currently can hook into Subversion repositories. You ...

  • An implementation of the JVM in Javascript? Caught this over on JavaPosse Google Groups. Essentially, some bright fellows over in Japan have developed a bytecode->javascript compiler. There's a demo floating around that took a Tetris ...