.net HttpClient性能优化
2018-04-18 本文已影响0人
rock_fish
关注点:1.tcp连接数(设置多一点)
2.100-continue(禁用)
3.TCP内部的小包拼接处理(字节很少的请求,禁用nagles算法)
4.httpClient实例数目(单例).
参考链接:
简单的说明使用场景,
https://blogs.msdn.microsoft.com/windowsazurestorage/2010/06/25/nagles-algorithm-is-not-friendly-towards-small-requests/
https://alexandrebrisebois.wordpress.com/2013/03/24/why-are-webrequests-throttled-i-want-more-throughput/
深入的讲解
https://my.oschina.net/xinxingegeya/blog/485643
个人认为很通透的讲解
https://blog.csdn.net/wdscq1234/article/details/52432095