代码拉取完成,页面将自动刷新
package redis
import (
"time"
"github.com/micro/go-micro/broker"
)
var (
DefaultMaxActive = 0
DefaultMaxIdle = 5
DefaultIdleTimeout = 2 * time.Minute
DefaultConnectTimeout = 5 * time.Second
DefaultReadTimeout = 5 * time.Second
DefaultWriteTimeout = 5 * time.Second
optionsKey = optionsKeyType{}
)
// options contain additional options for the broker.
type brokerOptions struct {
maxIdle int
maxActive int
idleTimeout time.Duration
connectTimeout time.Duration
readTimeout time.Duration
writeTimeout time.Duration
}
type optionsKeyType struct{}
func ConnectTimeout(d time.Duration) broker.Option {
return func(o *broker.Options) {
bo := o.Context.Value(optionsKey).(*brokerOptions)
bo.connectTimeout = d
}
}
func ReadTimeout(d time.Duration) broker.Option {
return func(o *broker.Options) {
bo := o.Context.Value(optionsKey).(*brokerOptions)
bo.readTimeout = d
}
}
func WriteTimeout(d time.Duration) broker.Option {
return func(o *broker.Options) {
bo := o.Context.Value(optionsKey).(*brokerOptions)
bo.writeTimeout = d
}
}
func MaxIdle(n int) broker.Option {
return func(o *broker.Options) {
bo := o.Context.Value(optionsKey).(*brokerOptions)
bo.maxIdle = n
}
}
func MaxActive(n int) broker.Option {
return func(o *broker.Options) {
bo := o.Context.Value(optionsKey).(*brokerOptions)
bo.maxActive = n
}
}
func IdleTimeout(d time.Duration) broker.Option {
return func(o *broker.Options) {
bo := o.Context.Value(optionsKey).(*brokerOptions)
bo.idleTimeout = d
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。