test
This commit is contained in:
parent
15b04af898
commit
fb46d01e59
8
def.go
8
def.go
@ -212,12 +212,16 @@ const (
|
|||||||
objJobPriorityRescanAllMsg = 4
|
objJobPriorityRescanAllMsg = 4
|
||||||
|
|
||||||
MQGetMsgWorkers = 12
|
MQGetMsgWorkers = 12
|
||||||
|
MQCWMsgQueueSize = 100
|
||||||
SQLCWMsgWorkers = 6
|
SQLCWMsgWorkers = 6
|
||||||
SQLIdentifyMsgWorkers = 6
|
SQLIdentifyMsgWorkers = 6
|
||||||
SQLJobWorkers = 3
|
SQLMsgIdentifyQueueSize = 1000
|
||||||
|
SQLJobWorkers = 12
|
||||||
TGCmdWorkers = 3
|
TGCmdWorkers = 3
|
||||||
|
TGCmdQueueSize = 100
|
||||||
MQTGCmdWorkers = 3
|
MQTGCmdWorkers = 3
|
||||||
SQLJobSliceSize = 25
|
MQTGCmdQueueSize = 100
|
||||||
|
SQLJobSliceSize = 250
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
8
main.go
8
main.go
@ -105,10 +105,10 @@ func main() {
|
|||||||
}
|
}
|
||||||
b.Send(&u, "Bot restarted")
|
b.Send(&u, "Bot restarted")
|
||||||
|
|
||||||
MQCWMsgQueue = make(chan ChatWarsMessage, 100)
|
MQCWMsgQueue = make(chan ChatWarsMessage, MQCWMsgQueueSize)
|
||||||
SQLMsgIdentifyQueue = make(chan int64, 100)
|
SQLMsgIdentifyQueue = make(chan int64, SQLMsgIdentifyQueueSize)
|
||||||
TGCmdQueue = make(chan TGCommand, 100)
|
TGCmdQueue = make(chan TGCommand, TGCmdQueueSize)
|
||||||
MQTGCmdQueue = make(chan TGCommand, 100)
|
MQTGCmdQueue = make(chan TGCommand, MQTGCmdQueueSize)
|
||||||
clientsQueue = make(map[int64]*MQClient)
|
clientsQueue = make(map[int64]*MQClient)
|
||||||
clientsKeepAlive = make(map[int64]*MQKeepAlive)
|
clientsKeepAlive = make(map[int64]*MQKeepAlive)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user