Bump the number of simultaneous workers
We're in 2024, I'm pretty sure we can afford to have 16 simultaneous open http connections at the same time, instead of only 5.
This commit is contained in:
parent
7a307f8e74
commit
2ba893bc79
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ const (
|
|||
defaultBaseURL = "http://localhost"
|
||||
defaultRootURL = "http://localhost"
|
||||
defaultBasePath = ""
|
||||
defaultWorkerPoolSize = 5
|
||||
defaultWorkerPoolSize = 16
|
||||
defaultPollingFrequency = 60
|
||||
defaultForceRefreshInterval = 30
|
||||
defaultBatchSize = 100
|
||||
|
|
|
@ -165,7 +165,7 @@ Default is "info"\&.
|
|||
.B WORKER_POOL_SIZE
|
||||
Number of background workers\&.
|
||||
.br
|
||||
Default is 5 workers\&.
|
||||
Default is 16 workers\&.
|
||||
.TP
|
||||
.B POLLING_FREQUENCY
|
||||
Refresh interval in minutes for feeds\&.
|
||||
|
|
Loading…
Reference in a new issue