12345678910111213141516171819202122232425 |
- package main
- type (
- Config struct {
- CornExp1 string `json:"cornexp1"`
- KeyId string `json:"keyId"`
- Key string `json:"key"`
- TiDb struct {
- Host string `json:"host"`
- Port int `json:"port"`
- Database string `json:"database"`
- User string `json:"user"`
- Password string `json:"password"`
- PollSize int `json:"poolsize"`
- MaxIdle int `json:"maxidle"`
- MaxLeftTime int `json:"maxleft"`
- } `json:"tiDb"`
- Bath int `json:"bath"` //增量批量查询数据量
- Chan int `json:"chan"` //并发通道数量
- PollCount int `json:"pollCount"` //限制轮询次数
- WaitingTime int `json:"waitingTime"` //排队等待时间 单位秒
- DoingTime int `json:"doingTime"` //语音识别中 等待时间 单位秒
- VoiceRecordId int64 `json:"voiceRecordId"` //增量id
- }
- )
|