1
0
Fork 0

Increase default batch size value

This commit is contained in:
Frédéric Guillot 2021-04-30 22:58:27 -07:00 committed by fguillot
parent 5b8eb4735c
commit 89e8e94bf1
2 changed files with 3 additions and 3 deletions

View file

@ -25,7 +25,7 @@ const (
defaultBasePath = "" defaultBasePath = ""
defaultWorkerPoolSize = 5 defaultWorkerPoolSize = 5
defaultPollingFrequency = 60 defaultPollingFrequency = 60
defaultBatchSize = 10 defaultBatchSize = 100
defaultPollingScheduler = "round_robin" defaultPollingScheduler = "round_robin"
defaultSchedulerEntryFrequencyMinInterval = 5 defaultSchedulerEntryFrequencyMinInterval = 5
defaultSchedulerEntryFrequencyMaxInterval = 24 * 60 defaultSchedulerEntryFrequencyMaxInterval = 24 * 60

View file

@ -1,5 +1,5 @@
.\" Manpage for miniflux. .\" Manpage for miniflux.
.TH "MINIFLUX" "1" "February 20, 2021" "\ \&" "\ \&" .TH "MINIFLUX" "1" "April 30, 2021" "\ \&" "\ \&"
.SH NAME .SH NAME
miniflux \- Minimalist and opinionated feed reader miniflux \- Minimalist and opinionated feed reader
@ -136,7 +136,7 @@ Default is 60 minutes\&.
.B BATCH_SIZE .B BATCH_SIZE
Number of feeds to send to the queue for each interval\&. Number of feeds to send to the queue for each interval\&.
.br .br
Default is 10 feeds\&. Default is 100 feeds\&.
.TP .TP
.B POLLING_SCHEDULER .B POLLING_SCHEDULER
Scheduler used for polling feeds. Possible values are "round_robin" or "entry_frequency"\&. Scheduler used for polling feeds. Possible values are "round_robin" or "entry_frequency"\&.