If I run the GWT application in eclipse in development mode and have been in the browser for some time, I always get an "out of memory" error in eclipse. My computer has 16 GB of memory, and never uses more than 8 GB.
I tried several configuration options. The VM arguments in my Run configuration contain the following parameters: "-Xms8192m -Xmx8192m"
Even in eclipse.ini, I tested several configuration options, and now it looks like this:
--launcher.XXMaxPermSize 8192M -showsplash org.eclipse.platform --launcher.XXMaxPermSize 8192m --launcher.defaultAction openFile --launcher.appendVmargs -vmargs -Dosgi.requiredJavaVersion=1.6 -Xms8192m -Xmx8192m
But I still get the error. Is there any way to prevent this?
source share