Allows you to create images on a 2-page website: fast and slow. Slow page requests are completed within 1 minute; request fast 5 seconds.
My whole development career I thought that if the 1st request started slowly: it will make a (synchronous) call to DB ... wait answer ... If during this time a request for a quick page is executed, this request will be processed while the system expects a response from the database.
But today I found: http://msdn.microsoft.com/en-us/library/system.web.httpapplication.aspx
One instance of the HttpApplication class is used to handle many requests throughout its life. However, it can only process one request at a time. Thus, member variables can be used to store data for a query.
Does this mean that my original thoughts are wrong?
Could you clarify what they mean? I am pretty sure that everything is as I expect ...
Budda
source share