Google App Engine Go HTTP请求到慢速页面

Google App Engine Go HTTP请求到慢速页面,第1张

Google App Engine Go HTTP请求慢速页面

如果可能的话,我建议您使用Tasks Queue
API
在主请求处理程序之外进行urlfetch

构造urlfetch.Transport时,您应该能够覆盖默认的截止日期,如下所示:

t := urlfetch.Transport{Context:c, DeadlineSeconds: 5.0}client := http.Client{Transport: &t}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5013064.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存