views:

32

answers:

1

I can't seem to find any information on this anywhere.

Either it's my imagination or the ASP.NET Dev Server (Cassini) cannot handle multiple threads (e.g. multiple requests). Is this correct?

Does IIS Express handle multiple threads?

+2  A: 

Yes, functionally speaking, cassini processes one request at a time.

IIS Express is an almost full IIS implementation and will provide expected performance.

Sky Sanders