I've been working on a game that's played in a java applet. It all works fine, until you try to refresh the page. It often seems to 'keep' the applet it used so far, and relaunches the game in the same applet. A new process is not created, and the ram usage shoots up (~250mb instead of ~140mb), and the same console is used for the applet. The drawing process is also quite laggy; it often skips about 0.5 seconds of frames before drawing again.
It only sometimes completely refreshes the applet; a new process is created (as seen in Windows' task manager), a new console opens, it uses less ram; it just starts from scratch again.
As I experience issues when it reuses the applet, I would like to force it to create the new process every time I refresh. Is there a way to do that? Or can I somehow fix the issues when it doesn't completely refresh?
The game I'm working on can be seen at http://patrickdev.nl/galaxy048/. Once it runs, press 'f' to toggle the fps and memory details.
Thank you in advance.
OutOfMemoryError- GC should take care of it. Is it running some high-priority threads? +1 for thinking to provide a link to the problem applet, and for making it such fun to visit. :) – Andrew Thompson Nov 12 '12 at 13:44