posted 16 years ago
What is the benefit to using Singletons on the server? I was reading another post and somebody had multiple calling classes as Singletons. While it reduces object creation, wouldn't you have to synchronize a lot of the code, creating a whole bunch of synchronized bottle necks?
I can justify having the class that accesses the database file a singleton since it's already all synced up, but what about any front end facade/adapter classes?