show/hide this revision's text 3 edited tags
show/hide this revision's text 2 added an extra subquestion

In some asp tutorials, like this, i observe the following pattern:

Application.Lock

'do some things with the application object

Application.Unlock

However, since web pages can have multiple instances, there is an obvious concurrency problem. So my questions are the following:

What if one page tries to lock while the object is already locked?

Is there a way to detect whether the application object is locked?

Is it better to just work on un an unlocked application object or does that have other consequences?

What if there is only one action involving the application object? ~Is there a reason to lock/unlock in that case?

show/hide this revision's text 1

Application Object and Concurrency Concerns

In some asp tutorials, like this, i observe the following pattern:

Application.Lock

'do some things with the application object

Application.Unlock

However, since web pages can have multiple instances, there is an obvious concurrency problem. So my questions are the following:

What if one page tries to lock while the object is already locked? Is there a way to detect whether the application object is locked? Is it better to just work on un unlocked application object or does that have other consequences?