11 lines
545 B
Go
11 lines
545 B
Go
|
|
package config
|
|||
|
|
|
|||
|
|
// SeqBufferConfig seq 预分配配置
|
|||
|
|
type SeqBufferConfig struct {
|
|||
|
|
Enabled bool `mapstructure:"enabled"`
|
|||
|
|
PrivateBufferSize int `mapstructure:"private_buffer_size"` // 私聊预分配步长(默认 50)
|
|||
|
|
GroupBufferSize int `mapstructure:"group_buffer_size"` // 群聊预分配步长(默认 200)
|
|||
|
|
LockTimeoutMs int `mapstructure:"lock_timeout_ms"` // 分布式锁超时毫秒(默认 5000)
|
|||
|
|
MaxRetries int `mapstructure:"max_retries"` // 冷启动重试次数(默认 3)
|
|||
|
|
}
|