Go从三个站点中返回响应最快的

Posted chenqionghe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go从三个站点中返回响应最快的相关的知识,希望对你有一定的参考价值。

利用协程可以轻松实现

package main

import (
    "fmt"
    "github.com/imroc/req"
)

func mirroredQuery() string {
    responses := make(chan string, 3)
    go func() { responses <- request("http://www.baidu.com") }()
    go func() { responses <- request("http://www.google.com") }()
    go func() { responses <- request("http://www.qq.com") }()

    return <-responses
}

//发送http请求方法
func request(hostname string) (response string) {
    r := req.New()
    r.Get(hostname)
    return hostname
}

func main() {
    fmt.Println(mirroredQuery())
}

  

以上是关于Go从三个站点中返回响应最快的的主要内容,如果未能解决你的问题,请参考以下文章

如何从片段中的 JSON 响应中的对象获取数据

从单个按钮从多个片段中提取数据

LAMP的基本配置

5.Go语言高并发与微服务实战 --- 构建 Go Web 服务器

中继片段传播不起作用

golang代码片段(摘抄)