codecamp

httpx 池限制配置

可以使用​Client​上的​limits​关键字参数控制连接池大小。它采用​httpx.Limits​的实例定义:

  • max_keepalive_connections​,允许的保持活动状态连接数,或​None​始终允许。(默认值 20)
  • max_connections​,允许的最大连接数,或​None​无限制。(默认值 100)
  • keepalive_expiry​,空闲保持活动状态连接的时间限制(以秒为单位),或​None​无限制。(默认值 5)
limits = httpx.Limits(max_keepalive_connections=5, max_connections=10)
client = httpx.Client(limits=limits)


httpx 超时配置
httpx 多部分文件编码
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }