views:

166

answers:

2

how many number of thread per process default in the system.thread.threadpool in asp.net 3.5 ?

+1  A: 

default size is 250. ...worker threads per processer

1000 I/O threads

http://msdn.microsoft.com/en-us/library/system.threading.threadpool.aspx

Stuart
thanks for answer
KuldipMCA
+1  A: 

250 worker threads per processor under .NET 3.5

Reference MSDN.

Jay Riggs