golang替换字符串中的图片链接,如何提升性能呢?

RafaelShin · · 2947 次点击
该怎么优化呢,大佬?
#2
更多评论
这不是经典的协程场景么
#1
2楼 <a href="/user/RafaelShin" title="@RafaelShin">@RafaelShin</a> 伪代码 res := make(chan string) wg := &amp;sync.WaitGroup{} for _, url := range imgs { go func(url, wg) { defer wg.done 发起http请求, 发送给res } for xxx := range res { 拿到上传好的url 替换 wg.wait() close(res)
#3