Garbage Reduction
Some of this information may be incorrect, speculative or out of date. Unity provides an in-depth tutorial with more up to date and accurate information. As of version 1.4, Kerbal Space Program runs on Unity 2017.1, which, for example, reduces the concern about foreach loops (problematic for Unity versions before 5.5). All advice is situational and the largest source of garbage collection issues in most user made plugins will be lack of/poor design.
Contents
What is garbage, and why is it bad?
C# is a garbage-collected language, which means that the programmer doesn't have to worry about deleting variables when done with them; the system will do it automatically.
However, the way it does this is by freezing the system and then walking through the list of variables and removing the unused ones ("garbage" variables). This can cause stutters, and the stutters will be more frequent and longer the more garbage there is.
Measuring garbage production
MemGraph can show you how much garbage KSP is creating. It is not broken down by mod, so to test a specific mod you'll need a copy of KSP with only that mod installed.
What does Squad say about garbage?
Best practices to avoid creating garbage
avoid temporary variables
The fewer variables you create and destroy, the fewer garbage is created. Keeping a variable around between uses will increase total memory usage, but reduce garbage.
Especially try to avoid declaring variables inside loops.
avoid foreach
Replace "foreach" with "for".
Less garbage, but goes through the list backwards:
for (int i = <something>.Length - 1; i >= 0; --i)
One extra variable, but goes through the list forwards:
int count = <something>.Length; // (or .Count or whatever works for the object concerned) for (int i = 0; i < count; ++i)
If you're using Visual Studio instead of MonoDevelop, replacing foreach is not strictly necessary in some cases:
However if you want a hard and fast rule, "don't use foreach" is pretty simple.
avoid Singletons
No info on this.
remove "using System.Linq"
Linq creates a lot of garbage. Don't use it.
don't loop through all Parts/Resources/whatever every frame
Looping through every part on the ship is expensive. Don't do this every frame, but instead get notified when the ship changes and then re-scan it. Same for resources, or anything else that you can cache and then get notified when you need to act.
List<Part> partsICareAbout = new List<Part>(); Start() { rescanMethod(); // run this at startup GameEvents.onVesselChange.Add(rescanMethod); // onVesselChange - switching between vessels with [ or ] keys GameEvents.onVesselStandardModification.Add(rescanMethod); // onVesselStandardModification collects various vessel events and fires them off with a single one. // Specifically - onPartAttach,onPartRemove,onPartCouple,onPartDie,onPartUndock,onVesselWasModified,onVesselPartCountChanged } public void rescanMethod(Vessel gameEventVessel=null) { // scan the ship for the parts you need, and save them in partsICareAbout }