Skip to content

Commit f5b7b05

Browse files
akrantz01claude
andauthored
Reduce miniflux feed refresh batch size to 15 (#238)
The default BATCH_SIZE of 100 causes network issues due to too many domains being fetched concurrently. Lower it to 15 to reduce load. https://claude.ai/code/session_01SDH1DWoiQ8dEPA6kFskffE --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent 7500c3b commit f5b7b05

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

components/miniflux.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@ in {
7070
config = {
7171
BASE_URL = "https://${cfg.domain}";
7272
HTTPS = 1;
73+
BATCH_SIZE = 15;
74+
POLLING_FREQUENCY = 60;
75+
POLLING_SCHEDULER = "entry_frequency";
76+
SCHEDULER_ENTRY_FREQUENCY_MIN_INTERVAL = 60;
77+
SCHEDULER_ENTRY_FREQUENCY_MAX_INTERVAL = 1440;
7378

7479
DISABLE_LOCAL_AUTH = 1;
7580

0 commit comments

Comments
 (0)