Classic ASP: Can the "Application" global object cause dead lock? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:22:09Z http://stackoverflow.com/feeds/question/313998 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/313998/classic-asp-can-the-application-global-object-cause-dead-lock 1 Classic ASP: Can the "Application" global object cause dead lock? Daniel Silveira 2008-11-24T12:05:34Z 2008-11-24T16:03:49Z <p>In <strong>classic ASP</strong> there is a global object called <strong>"Application"</strong> that is accessed simultaniously by all sessions.</p> <p>As the "Application" object is a shared resource, can it cause <strong>dead locks?</strong></p> <p>EDIT: If not, why does it has <strong>lock</strong> and <strong>unlock</strong> methods for? <a href="http://www.w3schools.com/asp/asp_ref_application.asp" rel="nofollow">Reference</a></p> http://stackoverflow.com/questions/313998/classic-asp-can-the-application-global-object-cause-dead-lock/314001#314001 0 Answer by Stefan Mai for Classic ASP: Can the "Application" global object cause dead lock? Stefan Mai 2008-11-24T12:07:02Z 2008-11-24T12:07:02Z <p>No, it never blocks.</p> http://stackoverflow.com/questions/313998/classic-asp-can-the-application-global-object-cause-dead-lock/314002#314002 0 Answer by MysticSlayer for Classic ASP: Can the "Application" global object cause dead lock? MysticSlayer 2008-11-24T12:08:48Z 2008-11-24T12:08:48Z <p>A deadlock is a situation wherein two or more competing actions are waiting for the other to finish, and thus neither ever does.</p> http://stackoverflow.com/questions/313998/classic-asp-can-the-application-global-object-cause-dead-lock/314043#314043 3 Answer by Mehrdad Afshari for Classic ASP: Can the "Application" global object cause dead lock? Mehrdad Afshari 2008-11-24T12:32:50Z 2008-11-24T15:03:07Z <p><b>Deadlock</b> is different from normal <b>blocking</b>. Since pages are processed in different threads, if you want to prevent another request from modifying that shared resource, you use Lock, and to allow modification again, you use the Unlock method. The thing is, if you don't use those methods, <i>another request can change the value of an item in the application state, while you're relying on an old value</i>. Or two requests can try to modify it simultaneously and it might cause problems. Lock method causes a request to wait until the other request unlocks application; after that, it can continue. </p> <p>Deadlock is a situation in which <i>thread A</i> <b>locks</b> <i>resource 1</i> and <b>waits</b> for <i>resource 2</i> to become available. At the same time <i>thread B</i>, which has <b>locked</b> <i>resource 2</i> needs to access <i>resource 1</i> (which is locked by <i>thread A</i>) to continue to work and be able to release the resource afterwards. In this situation, <b>none</b> of the threads can continue (one of them <b>has to be terminated</b> to allow continuation). This is a <b>deadlock</b>. Application.Lock will not cause deadlocks on its own if correctly used. But if it's not used correctly, it might cause deadlocks (when coupled with another shared resource that needs locking and deadlocks are not taken care of).</p> http://stackoverflow.com/questions/313998/classic-asp-can-the-application-global-object-cause-dead-lock/314588#314588 2 Answer by dariom for Classic ASP: Can the "Application" global object cause dead lock? dariom 2008-11-24T16:03:49Z 2008-11-24T16:03:49Z <p>It's unlikely that the locking the ASP <code>Application</code> object will result in a deadlock lasting longer than the server script timeout setting.</p> <p>The classic ASP <code>Application</code> object has Lock and Unlock for synchronizing changes to the Application objects. You can have multiple requests trying to make a change to the same value - without locking, making the change and then unlocking the change might be lost.</p> <p>As simple example would be a counter of some sorts. Let's say your code does:</p> <pre><code>&lt;% Application("Count") = Application("Count") + 1 %&gt; </code></pre> <p>If you have two simultaneous requests (req1 and req2) , you could "lose" a page hit - effectively a "missing update".</p> <p>You can prevent this by locking the <code>Application</code> variable before updating it and unlocking it after the update:</p> <pre><code>&lt;% Application.Lock Application("Count") = Application("Count") + 1 Application.Unlock %&gt; </code></pre> <p>If <code>Application</code> is locked while another request thread tries to access it, the thread will block until the lock is released or the script timeout is exceeded.</p> <p>If you forget to Unlock a Lock it will be released automatically after the page is processed or after the script timeout is exceeded.</p> <p>For more information, <a href="http://msdn.microsoft.com/en-us/library/ms525184.aspx" rel="nofollow">see MSDN</a>.</p>