4 ms·
> With the new IIS you have a lot more control over the threading context (you can even run things straight on your IOCP thread if you want). I am curious abou
by cipherzero 15y ago
> With the new IIS you have a lot more control over the threading context (you can even run things straight on your IOCP thread if you want).
I am curious about this, can you provide a link or reference with more information?
- jconley 15y agohttp://blogs.msdn.com/b/tmarq/archive/2007/07/21/asp-net-thread-usage-on-iis-7-0-and-6-0.aspx http://blogs.msdn.com/b/tmarq/archive/2007/07/21/asp-net-thr... "... If you’re curious to see how much faster ASP.NET requests execute without the thread switch, you can set the value to 0. This will cause the request to execute on the IIS I/O thread, without switching to a CLR Threadpool thread. ..." Of course you would only ever set this if you are really doing every bit of I/O asynchronously in your application. Otherwise bad, bad things would happen (deadlock under load).