views:

92

answers:

1

ASP.Net 3.5 using C#

a.  The number of queued requests before returning “Server Busy (error:503)”
b.  The maximum number of threads per processor
c.  The maximum number of threads per request.
d.  The maximim amount of memory utilized per request.

want correct answer of the above question among given answers.I think b. will be the answer,but i am not sure.There will be more than one answer.

A: 
  • a) sounds like requestQueueLimit
  • b) you might say that it is maxWorkerThreads - it is a number per processor, but it is not a complete number of threads, there is also MaxIOThreads
  • c) does not make any sense seems to be an oxymoron
  • and so is d)
mfeingold