Would you consider this a singleton/singleton pattern? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T03:51:15Zhttp://stackoverflow.com/feeds/question/185448http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/185448/would-you-consider-this-a-singleton-singleton-pattern2Would you consider this a singleton/singleton pattern?mattlant2008-10-09T00:12:02Z2008-10-09T02:10:31Z
<p>Imagine in the Global.asax.cs file I had an instance class as a private field, lets say like this:</p>
<pre><code>private MyClass _myClass = new MyClass();
</code></pre>
<p>and I had on Global a static method called GetMyClass() that gets the current HttpApplication and returns that instance.</p>
<pre><code>public static MyClass GetMyClass()
{
return ((Global)HttpContext.Current.ApplicationInstance)._myClass;
}
</code></pre>
<p>So I could get the instance on the current requests httpapplication by calling Global.GetMyClass().</p>
<p>Keep in mind that there is more than 1 (Global)HttpApplication. There is an HttpApplication for each request and they are pooled/shared, so in the truest sense it is not a real singleton. But it does follow the pattern to a degree.</p>
<p>So as the question asked, would you consider this at the very least the singleton pattern?</p>
<p>Would you say it should not be used? Would you discourage its use? Would you say its a <strong><em>possibly</em></strong> bad practice like a true singleton. </p>
<p>Could you see any problems that may arise from this type of usage scenario?</p>
<p>Or would you say its not a true singleton so its ok, and not bad practice. Would you recommend this as a semi quasi singleton where an instance per request is required? If not what other pattern/suggestion would you use/give?</p>
<p>Have you ever used anything such as this?</p>
<p>I have used this on past projects but I am unsure if its a practice I should stay away from. I have never had any issues in the past though. </p>
<p>Please give me your thoughts and opinions on this.</p>
<p>EDIT: I am not asking what a singleton is. And I consider a singleton bad practice when used imprperly which is in many many many cases. That is me. However, that is not what I am trying to discuss. I am trying to discuss THIS scenario I gave. Thanks.</p>
http://stackoverflow.com/questions/185448/would-you-consider-this-a-singleton-singleton-pattern/185456#1854564Answer by Cowan for Would you consider this a singleton/singleton pattern?Cowan2008-10-09T00:15:29Z2008-10-09T00:15:29Z<p>I'm not a .NET person so I'll refrain from commenting on this, except for this part:</p>
<blockquote>
<p>Would you say its bad practice like a true singleton. </p>
</blockquote>
<p>True singletons aren't 'bad practice'. They're HORRIBLY OVERUSED but that's not the same thing. I read something recently (can't remember where, alas) where someone pointed out the -- 'want or need' vs. 'can'.</p>
<p>"We only want one of these", or "we'll only need one": not a singleton.</p>
<p>"We CAN only have one of these": singleton</p>
<p>That is, if the very idea of having two of that object will break something in horrible and subtle ways, yes, use a singleton. This is true a lot more rarely than people think, hence the proliferation of singletons.</p>
http://stackoverflow.com/questions/185448/would-you-consider-this-a-singleton-singleton-pattern/185457#1854573Answer by James Curran for Would you consider this a singleton/singleton pattern?James Curran2008-10-09T00:15:48Z2008-10-09T00:15:48Z<p>A Singleton is an object, of which, there CAN BE only one. </p>
<p>Objects of which there just happens to be one right now are not singleton.</p>
http://stackoverflow.com/questions/185448/would-you-consider-this-a-singleton-singleton-pattern/185460#1854602Answer by Ben Scheirman for Would you consider this a singleton/singleton pattern?Ben Scheirman2008-10-09T00:17:14Z2008-10-09T00:17:14Z<p>Whether or not this fits the cookie-cutter pattern of a Singleton, it still suffers from the same problems as Singleton:</p>
<ul>
<li>It is a static, concrete reference and cannot be substituted for separate behavior or stubbed/mocked during a test</li>
<li>You cannot subclass this and preserve this behavior, so it's quite easy to circumvent the singleton nature of this example</li>
</ul>
http://stackoverflow.com/questions/185448/would-you-consider-this-a-singleton-singleton-pattern/185465#1854650Answer by Travis for Would you consider this a singleton/singleton pattern?Travis2008-10-09T00:19:34Z2008-10-09T00:19:34Z<p>I would say that it is defiantly NOT a singleton. Design patterns are most useful as definitions of common coding practices. When you talk about singletons, you are talking about an object where there is only one instance.</p>
<p>As you yourself have noted, there are multiple HttpApplications, so your code does not follow the design of a Singleton, and does not have the same side-effects.</p>
<p>For example, one might use a singleton to update currency exchange rates. If this person unknowingly used your example, they would fire up 7 instances to do the job that 'only one object' was meant to do.</p>
http://stackoverflow.com/questions/185448/would-you-consider-this-a-singleton-singleton-pattern/185547#1855471Answer by David B for Would you consider this a singleton/singleton pattern?David B2008-10-09T01:03:13Z2008-10-09T01:28:47Z<p>Forget singleton for a moment.</p>
<p>You have static methods that return application state. You better watch out.</p>
<p>If two threads access this shared state... boom. If you live on the webserver, your code will eventually be run in a multi-threaded context.</p>
http://stackoverflow.com/questions/185448/would-you-consider-this-a-singleton-singleton-pattern/185670#1856702Answer by Kevin Dostalek for Would you consider this a singleton/singleton pattern?Kevin Dostalek2008-10-09T02:10:31Z2008-10-09T02:10:31Z<p>Since you're talking about a web application, you need to be very careful with assuming anything with static classes or this type of pseudo-singleton because as David B said, they are only shared across that thread. Where you will get in trouble is if IIS is configured to use more than one worker process (configured with the ill-named "Web-Garden" mode, but also the # worker processes can be set in machine.config). Assuming the box has more than one processor, whoever is trying to tweak it's performance is bound to turn this on.</p>
<p>A better pattern for this sort of thing is to use the HttpCache object. It is already thread-safe by nature, but what still catches most people is you object also needs to be thread-safe (since you're only going to probably create the instance and then read/write to a lot of its properties over time). Here's some skeleton code to give you an idea of what I'm talking about:</p>
<pre><code>public SomeClassType SomeProperty
{
get
{
if (HttpContext.Current.Cache["SomeKey"] == null)
{
HttpContext.Current.Cache.Add("SomeKey", new SomeClass(), null,
System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromDays(1),
CacheItemPriority.NotRemovable, null);
}
return (SomeClassType) HttpContext.Current.Cache["SomeKey"];
}
}
</code></pre>
<p>Now if you think you might need a web farm (multi-server) scale path, then the above won't work as the application cache isn't shared across machines.</p>