pages-server/server/shared/fast_http_client.go

17 lines
375 B
Go
Raw Normal View History

2022-05-15 23:12:13 +02:00
package shared
import (
"time"
"github.com/valyala/fasthttp"
)
func GetFastHTTPClient(timeout time.Duration) *fasthttp.Client {
return &fasthttp.Client{
ReadTimeout: timeout,
MaxConnDuration: 60 * time.Second,
MaxConnWaitTimeout: 1000 * time.Millisecond,
MaxConnsPerHost: 128 * 16, // TODO: adjust bottlenecks for best performance with Gitea!
}
}