Skip to content
Snippets Groups Projects
Unverified Commit bb87dc5e authored by capossele's avatar capossele
Browse files

:recycle: Increase WorkerPools size

parent 15efbce3
Branches
No related tags found
No related merge requests found
......@@ -57,6 +57,7 @@ func New(store kvstore.KVStore) (result *Tangle) {
}
result.solidifierWorkerPool.Tune(1024)
result.storeMessageWorkerPool.Tune(1024)
return
}
......
......@@ -22,8 +22,8 @@ const (
)
var (
messageWorkerCount = runtime.GOMAXPROCS(0)
messageWorkerQueueSize = 500
messageWorkerCount = runtime.GOMAXPROCS(0) * 4
messageWorkerQueueSize = 1000
messageRequestWorkerCount = 1
messageRequestWorkerQueueSize = 100
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment