These are the java parameters you need, and why:
* -server - only needed if you are running a server. When there is a GUI, its thread is typically priority boosted to ensure that it reacts quickly to user input. This turns that logic off.
* -Xmx3072m - the default memory allocation is based on the physical RAM the machine has and is sometimes not appropriate to the mod pack. Better to force it.
* -XX:+UseParNewGC - The default "new object" garbage collector is single threaded, and can cause delays when run that will interrupt your TPS. This enabled the 'parallel' multi threaded collecter for the new object heap.
* -XX:+UseConcMarkSweepGC - this parameter is not actually needed as the above parameter will automatically enable it. This enables a similar concurrent / multi threaded garbage collector for the older object heap.
I have not found any other settings that either make a difference, or have a theory behind why they should make a difference.
-Xms is useless as it effects application load only and its all but impossible to objectively prove that MC loaded a bit faster or slower or less or more glitchy: Memory usage very quickly stabilizes in practice.
-XX:MaxPermSize only applies to Java 1.7 and lower. If you are using Java 1.8 it will emit a warning saying its not used. Even when it is required on earlier Java versions, its foolish go set it to a big number. Setting it too low will typically cause MC to crash on startup, setting it too high will steal memory from the heap and impede performance. So you want it as low as possible such that MC doesn't crash on load.