Java
GridGain + Multi-Core processors
Submitted by loner on 16 November, 2008 - 3:24pmGridGain is an open source product written in Java providing a grid computing platform. It is known to be one of the more widely used grid product, certainly, as far as I see, one of the easiest to "gridify" or grid-enable an existing product.
One of the applications of the product is to couple with Amazon EC2 to make a "cloud" computing platform. See Gridgain + Amazon EC2
The widespread use of "multi-core" PCs also means that the product can be used to "parallelise" to take advantage of this increased power.
- loner's blog
- Read more
- 4269 reads
Tips for improving the performane of Java applications
Submitted by loner on 27 October, 2008 - 1:13pm- Use Native Methods: The small amount of overheads caused by JNI is usually outweighed by the improved speed of the native function
- Use Buffering on I/O Operations:
BufferedInputStream,BufferedOutputStream,BufferedReader,BufferedWriterreduce the number of I/O operations to be performed. - Avoid Creating New Objects: Reuse objects as much as possible. The more objects, the more memory to create/store them.
- Use
StringBufferinstead of String Concatenations
- loner's blog
- Read more
- 721 reads
What did I say then?
Outsourcing in Asia | SCMP (3 years 15 weeks ago):
Outsourcing is increasingly popular again, and that's official. IDC has predicted that the Asia P...

