A better solution is to figure out why you have so many objects. GC cycles
increase linearly with the the more memory you allocate. If you allocate
2GB of memory, then it's normal to hav 10-20 second GC cycles. If you're
getting values that are that high (with hotspot) then you need to profile
your code and optimise.

On Mon, 26 Mar 2001, Salvatore Sferrazza wrote:

> I've had similar symptoms with ATG Dynamo.  It usually occurs when the VM
> decides to garbage collect.  The way we get around this is to have
> multiple Dynamo instances each with it's own dedicated VM and CPU.  This
> makes the user experience more acceptable across all sessions on the
> system since the garbage collection per user is less noticeable.  are you
> only using 1 VM right now?
> 
> just a thought.
> 
> Sal
> 
> 
> 


Reply via email to