[xep-support] multi threaded access issue ?

David Tolpin dvd at davidashen.net
Mon Feb 6 07:51:46 PST 2006


> Any ideas as to why this is happening ?
>

When you run multiple threads on the same machine with the same memory  
limit, you get much more memory use. Garbage collector in JVM is 'stop the  
world' by default. This means that with increased memory churning you  
spend more time in all the threads waiting for the garbage collector to  
complete (which has low priority, by the way).

You need also four times more memory and/or ParallelGC enable to benefit  
 from multiple threads.

David Tolpin
 
-------------------
(*) To unsubscribe, send a message with words 'unsubscribe xep-support'
in the body of the message to majordomo at renderx.com from the address
you are subscribed from.
(*) By using the Service, you expressly agree to these Terms of Service http://www.renderx.com/terms-of-service.html



More information about the Xep-support mailing list