verbosegc shows how is the garbage collection in your application. intense gc means your applet/application is allocating/de-allocating a large amount of objects. It sucks your memory and CPU power. Sometimes increasing memory heap its enougth. (as setting -Xmx128m -Xms32m ). Sometimes you need to check you code, and verify if you allocating some objects just to put it way a few lines later. Hangs are comon when java has not enought memory set in -Xmx and Xms. You can ajust it in your Java Plug-in Control Panel ( at Windows Control Panel)
I hope it helps... Alessandro ----- Original Message ----- From: "Flavius Alecu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 10, 2003 4:23 PM Subject: Re: [JAVA3D] FPS style navigation > alessandro, > > ok, problem solved..but what does verbose:gc do? and how can it solve my other problem, which causes the applet to hang?? > > =========================================================================== > To unsubscribe, send email to [EMAIL PROTECTED] and include in the body > of the message "signoff JAVA3D-INTEREST". For general help, send email to > [EMAIL PROTECTED] and include in the body of the message "help". =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
