ClustrMaps

The roadrunner is back as never before! See also: My homepage or my very obsolete site
If by any means entries in my blog are considered to be harmful or damaging, please let me know (add comment) or just mail me. In this (unhopely) case I will remove or change the contents.

Thursday, October 05, 2006

Java performance improvement and pitfalls:
The other area is architecture. Sometimes poor performance is literally "built in" to an application, making it very difficult to do any useful performance improvement by tuning. For example, suppose that you make heavy use of the object-oriented paradigm, such that you have many layers of superclasses and subclasses.
Moreover, suppose your application is one that processes bytes or characters one at a time, and each byte is processed through all these layers of classes and methods. In such a case, adequate performance may beimpossible to attain, short of an application re-design.
It’s important to keep performance in mind when designing your applications.
see: http://www.glenmccl.com/jperf/

No comments: