Does static methods and class are good for scalability ? I think so static class/method improves scalability of application and instance methods doesn\'t scales much. So is it g
There are three problems to consider with static methods:
It's not generally considered best practice but static helper methods are common. Too complex and another approach should probably be considered.