Application Object and Concurrency Concerns - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T18:30:45Zhttp://stackoverflow.com/feeds/question/170458http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170458/application-object-and-concurrency-concerns0Application Object and Concurrency ConcernsAlexandros2008-10-04T14:51:40Z2008-10-10T09:20:34Z
<p>In some asp tutorials, like <a href="http://www.4guysfromrolla.com/webtech/050900-1.shtml" rel="nofollow">this</a>, i observe the following pattern:</p>
<blockquote>
<p>Application.Lock</p>
<p>'do some things with the application object</p>
<p>Application.Unlock</p>
</blockquote>
<p>However, since web pages can have multiple instances, there is an obvious concurrency problem. So my questions are the following:</p>
<p>What if one page tries to lock while the object is already locked?</p>
<p>Is there a way to detect whether the application object is locked?</p>
<p>Is it better to just work on an unlocked application object or does that have other consequences?</p>
<p>What if there is only one action involving the application object? ~Is there a reason to lock/unlock in that case?</p>
http://stackoverflow.com/questions/170458/application-object-and-concurrency-concerns/170468#1704681Answer by Joe for Application Object and Concurrency ConcernsJoe2008-10-04T14:56:27Z2008-10-04T14:56:27Z<p>If one page tries to lock the Application object while it is already locked, it will wait until the page holding the lock has released it. This will normally be quick (ASP code should only generally hold the lock for long enough to access the shared object that's stored in Application).</p>
http://stackoverflow.com/questions/170458/application-object-and-concurrency-concerns/170489#1704890Answer by AnthonyWJones for Application Object and Concurrency ConcernsAnthonyWJones2008-10-04T15:12:21Z2008-10-04T15:12:21Z<p>There will be consequences if you use the application object unlocked. For example if you want to implement a global counter:-</p>
<pre><code>Application("myCounter") = Application("myCounter") + 1
</code></pre>
<p>The above code will at times miscount. This code reads, adds and assigns. If two threads try to perform this at the same time they may read the same value and then subsequently write the same value incrementing myCounter by 1 instead of 2.</p>
<p>Whats needed is to ensure that the second thread can't read myCounter until the second thread has written to it. Hence this is better:-</p>
<pre><code>Application.Lock
Application("myCounter") = Application("myCounter") + 1
Application.Unlock
</code></pre>
<p>Of course there are concurrency issues if the lock is held for a long time especially if there are other uses for application which are unaffected by the code holding the lock.</p>
<p>Hence you should avoid a design that would require a long lock on the application.</p>
http://stackoverflow.com/questions/170458/application-object-and-concurrency-concerns/170626#1706261Answer by splattne for Application Object and Concurrency Concernssplattne2008-10-04T16:39:58Z2008-10-04T16:39:58Z<p>The <code>Lock</code> method <strong>blocks other clients</strong> from modifying the variables stored in the Application object, ensuring that <strong>only one client at a time</strong> can alter or access the Application variables.</p>
<p>If you <strong>do not call</strong> the <code>Application.Unlock</code> method explicitly, the server unlocks the locked Application object when the .asp file <strong>ends or times out</strong>.</p>
<p>A lock on the Application object persists for a very short time because the application object is unlocked when the page completes processing or times out.</p>
<p>If one page locks the application object and a second page tries to do the same while the first page still has it locked, the second page will wait for the first to finish, or until the <code>Server.ScriptTimeout</code> limit is reached.</p>
<p>An example:</p>
<pre><code><%@ Language="VBScript" %>
<%
Application.Lock
Application("PageCalls") = Application("PageCalls") + 1
Application("LastCall") = Now()
Application.Unlock
%>
This page has been called <%= Application("PageCalls") %> times.
</code></pre>
<p>In the example above, the <code>Lock</code> method <strong>prevents more than one client at a time from accessing the variable PageCalls</strong>. If the application had not been locked, two clients could simultaneously try to increment the variable PageCalls. </p>