I read some where that each post request into ASP.NET comes on I/O thread in
IIS5 and on worker thread IIS6. If we write a custom handler (read ashx
page) and use QueueUserWorkItem to spawn work on pooled thread and return
immediately to the client, what type of thread will be used when work
commences? Is it I/O thread or worker thread in each IIS version? Any
gotcha's here from perf wise?
Thanks.
Raghu/.
Alvin Bruney [MVP] - 22 Apr 2004 23:27 GMT
the short answer is yes you may run out of worker pool threads. where did
you read that article? can you find and send a link?

Signature
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
>I read some where that each post request into ASP.NET comes on I/O thread
>in
[quoted text clipped - 6 lines]
> Thanks.
> Raghu/.