Can someone please provide scenarios where Singleton Pattern can be used to store commonly used data in Asp.net application, which is expensive to retrieve on each request ? Also, is it better to use Application State for the same? Also, can Singleton Pattern be used to store Web.Config settings when the application is started ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
I think there is no simple way of using Singleton pattern in ASP.Net ,I would prefer wrapping session state object in a static class,since a session is one for the entire application (but different for every user). Application state is already kind of Singleton in the sense it's one for every use and entire application. I would not prefer to store Web.Config anywhere else you can make a wrapper class for it if you like. Some Related Post: Asp.net cache singleton pattern |
||||
|
