Is ASP.NET multithreaded (how does it execute requests)

前端 未结 4 2247
予麋鹿
予麋鹿 2020-12-29 06:04

This might be a bit of a silly question but;

If I have two people logging on to my site at exactly the same time, will the server side code be executed one after the

4条回答
  •  时光取名叫无心
    2020-12-29 06:22

    It should use a thread pool. Note that they are still in the same application, so application level items like static variables are still shared between them.

提交回复
热议问题