How can you make the experience with Eclipse faster?
For instance: I disable all the plugins I don\'t need (Mylyn, Subclipse, …).<
Add -Xverify:none
to your eclipse.ini file.
It will cut down your Eclipse startup time considerably (50% in my case if not more). This will tell the VM not to validate all the .class files it is loading.
Consider this: Never Disable Bytecode Verification in a Production System (as mentioned in the comments)