Skip to content

Commit

Permalink
[performance] Bump default workers to CPUs * 2 (#608)
Browse files Browse the repository at this point in the history
* add license text to workers.go
* bump default workers to maxprocs*2
  • Loading branch information
tsmethurst authored May 26, 2022
1 parent 5668ce1 commit 0f01f72
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion internal/concurrency/workers.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
/*
GoToSocial
Copyright (C) 2021-2022 GoToSocial Authors [email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package concurrency

import (
Expand Down Expand Up @@ -27,7 +45,7 @@ func NewWorkerPool[MsgType any](workers int, queueRatio int) *WorkerPool[MsgType

if workers < 1 {
// ensure sensible workers
workers = runtime.GOMAXPROCS(0)
workers = runtime.GOMAXPROCS(0) * 2
}
if queueRatio < 1 {
// ensure sensible ratio
Expand Down

0 comments on commit 0f01f72

Please sign in to comment.