Click here to Skip to main content
15,891,864 members
Please Sign up or sign in to vote.
1.50/5 (2 votes)
See more:
I need to know How web server(iis) handle more requests at a time but i can't imagine that server is doing that one with one asp.net engine. Please somebody help me to come out of this riddle, it has been big headache in me and sometimes can't get sleep even in night, somebody help me pls.
Posted
Comments
[no name] 11-Sep-14 12:14pm    
Instead of getting big headaches and letting it keep you up at night, you should learn how to do some basic research, http://geekexplains.blogspot.com/2008/06/whats-web-server-how-does-web-server.html
Sergey Alexandrovich Kryukov 11-Sep-14 14:46pm    
How IIS internal functionality could be your "headache"? I would understand if you were aimed with creation of your own server.
Your concern is unclear. First of all, there is no such thing as "at the same time". Why just one engine could not serve many requests? If your concern is just the performance, it depends on many factors...
—SA

1 solution

It probably does not handle multiple requests at once; rather a request at a time, and very fast. Launch a thread for a connection, and have it die when it finishes.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900