You can also squeeze a little more runtime performance by increasing the
size of object nursery.
The commands would be:
java -XX:NewSize=256m -Xms512m -Xmx512m -server MyApp
The NewSize command alters the object nursery size - note that this is in
the addition to the heap size. So if you had 1
I would be weary of using java.util.Random - it is not that random:
http://alife.co.uk/nonrandom/.
A drop in Mersenne Twister replacement for java.util.Random is available at
http://cs.gmu.edu/~sean/research/.
Cheers,
Graham.
On 05/06/07, Peter Drake <[EMAIL PROTECTED]> wrote:
Oddly, ther