优艾设计网

tornado在同时发出n个请求时,如何让其中1个有结果就返回??

优艾设计网 https://www.uibq.com 2023-04-26 08:03 出处:网络 作者:PS抠图
我知道tornado可以用如下方式,同时并发n个请求: response1, response2,... responsen = yield [http_client.fetch(url1) , http_client.fetch(url2), ...... ,http_client.fetch(url2) ] 优艾设计网_设计客等到n个

我知道tornado可以用如下方式,同时并发n个请求:

response1, response2,... responsen = yield [http_client.fetch(url1) , http_client.fetch(url2), ...... ,http_client.fetch(url2) ]

优艾设计网_设计客等到n个请求都响应了之后,会返回给程序控制权,那么我的问题是:

1.如果我想其中一个有结果了,就返回yield继续执行,应该怎么实现?

2.如果我要让其中i个请求有结果了就返回呢?


0

精彩评论

暂无评论...
验证码 换一张
取 消