asp.net mvc - How IIS requests are parallelized using COMET? -
I have an ASP.NET MVC 2 Beta application where I will receive incoming requests for a specific action I need to block I
To accomplish this, I am using AutoResetEvent.WaitOne (30000);
The big issue is that IIS does not accept any new requests, while the thread is blocked on the WaitOne
instruction.
I should be able to parallel the request while maintaining behavior wait
.
There are async handlers that you are looking for. If you are creating a comet solution, you can check out our .NET implementation of a comet server, it will save you some time. If you want to do your own roll, you will definitely need to use ASCIN handlers, as long as you get 60 or 70 previous users, but even with ancillary operators, you still have to Also do some fancy footwork In fact, you are still going to kill some upper boundaries in Threadpool until you leave the requests in a limited thread pool which is the original You can manage all incoming requests for you.
Good luck!
Comments
Post a Comment