ARC question

נעול ARC question

  • 2008년 5월 7일 수요일 오전 2:39
     
     
     As long time interests in server arc and dev, how many open sockets are you guys specing for any 1 server?  What is the practical limit these days on WinServer 08 ( I assume ).  Side question.  Are you folks using CCR library at all in the server?  TIA.

모든 응답

  • 2008년 5월 7일 수요일 오후 8:52
     
     답변됨
    Hi William - If by CCR you mean the Concurrency and Coordination Runtime, then the answer is no, we’re not using it on the server side. As far as limiting the amount of work being done by a single server goes, we’re not directly throttling it via the number of open [TCP] connections. Instead, we’re using a queuing model that limits the number of concurrently outstanding [HTTP] requests. While this number is correlated with the number of open TCP connections, it’s not the same; for example, for HTTP traffic, HTTP Keep-Alives and pipelined requests mean you can have a single TCP connection being used for multiple requests.

    Thanks,
             Alex Mallet [MSFT]