質問

I can see in MSDN page that NetTcpBinding in new .NET 4.5 uses TCP connection pooling based on the service’s host DNS name and the port number the service is listening on. Does it true for WebHttpBinding as well? I could not find answer to this question.

役に立ちましたか?

解決

It seems, that connection pooling is allowed for tcp (TcpConnectionPoolSettings) and Named pipes (NamedPipeConnectionPoolSettings) only.

See also this msdn post

他のヒント

Connection pooling is done baased on the ServicePointManager/ServicePoint classes and so ServicePointManager MaxServicePoints/MaxServicePointIdleTime are used to control the caching.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top