- Singleton Pattern – More Than “One Object”In many systems, there are things that logically should exist only once.A logger. A configuration manager. A connection pool. If two parts of the system use different loggers or different configs, things break in subtle ways. The problem is not “how to create one object”.The problem is how to control object creation across the entire… Read more: Singleton Pattern – More Than “One Object”