Compare commits

..

1 Commits

Author SHA1 Message Date
Gaze
12985ae432 feat: remove conns timeout 2024-10-08 01:14:24 +07:00

View File

@@ -15,10 +15,9 @@ import (
)
var DefaultClient = fasthttp.Client{
MaxConnsPerHost: 10240, // default is 512
MaxConnWaitTimeout: 5 * time.Second, // default is no wating
ReadBufferSize: 4 * 1024,
WriteBufferSize: 4 * 1024,
MaxConnsPerHost: 10240, // default is 512
ReadBufferSize: 4 * 1024,
WriteBufferSize: 4 * 1024,
}
type Config struct {