Possible Duplicate:
On Design Patterns: When to use the Singleton?
in what kind of situation Singleton pattern will be used. please explain with real life scenario. thanks
Possible Duplicate:
On Design Patterns: When to use the Singleton?
in what kind of situation Singleton pattern will be used. please explain with real life scenario. thanks
I used it in a website that had a dynamically generated menu, that were shared by a group of users.
We generated the menu in memory, since we would loose performance if was read from the database every time it should be generated.