码迷,mamicode.com
首页 > 其他好文 > 详细

Jeffail/tunny goroutine 池工具

时间:2021-01-02 11:17:37      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:Golan   roc   channel   line   ola   default   data-   比较   mirror   

goroutine 池工具已经有好多了,好多都会基于channel或者cas 进行开发设计
谷歌的errgroup以及machine 都是一个不错的选择,Jeffail/tunny 也是一个比较稳定
的包

参考使用

  • main.go
 
 package main
?
import (
    "io/ioutil"
    "net/http"
    "runtime"
?
    "github.com/Jeffail/tunny"
)
?
func main() {
    numCPUs := runtime.NumCPU()
?
    pool := tunny.NewFunc(numCPUs, func(payload interface{}) interface{} {
        return payload
    })
    defer pool.Close()
?
    http.HandleFunc("/work", func(w http.ResponseWriter, r *http.Request) {
        input, err := ioutil.ReadAll(r.Body)
        if err != nil {
            http.Error(w, "Internal error", http.StatusInternalServerError)
        }
        defer r.Body.Close()
?
        // Funnel this work into our pool. This call is synchronous and will
        // block until the job is completed.
        result := pool.Process(input)
?
        w.Write(result.([]byte))
    })
?
    http.ListenAndServe(":8080", nil)
}

说明

tunny同时还支持其他的特性,比如超时,也支持进行状态的处理,同时machine 是一个很不错的选择,支持的特性也比较多

参考资料

https://pkg.go.dev/golang.org/x/sync/errgroup
https://github.com/autom8ter/machine
https://github.com/Jeffail/tunny

Jeffail/tunny goroutine 池工具

标签:Golan   roc   channel   line   ola   default   data-   比较   mirror   

原文地址:https://www.cnblogs.com/rongfengliang/p/14208023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!