I've been reading about the StackExchange technology (for example, this article about SO performance on highavailability.com), and have noticed they mention heavy usage of static methods for better performance.
Why do static methods perform better? I would think reduction in garbage collection costs has something to do with it (since no instances are needed for static methods); however, is there something more?