Improve Flash Builders performance by updating your eclipse.ini file

Flash Builder 4 is a big improvement over Flex Builder 3 for performance. But even so it doesn’t hurt to give Eclipse a little boost of much needed memory. Simply go to your eclipse.ini file. In Windows that’s located somewhere around here: C:\Program Files\eclipse3.5.

Note: If you are using Flash Builder standalone then look for FlashBuilder.ini in your Flash Builder install folder and make the same changes.

Your file should look something like this:

-startup
plugins/org.eclipse.equinox.launcher_1.0.201.R35x_v20090715.jar
–launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090519
-product
org.eclipse.epp.package.java.product
–launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
–launcher.XXMaxPermSize
256m
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx256m

Just change the last two lines to something like this:

-Xms256m
-Xmx512m

That should give Eclipse/Flash Builder a kick in the pants. I chose these settings based on the amount of RAM I have on my machine. You’re mileage may vary.