From 3df9a95acb5328a5eef3eaec406aa57a0f44eef9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 30 Nov 2025 01:52:16 -0500 Subject: [PATCH] Increase download concurrency to 200 workers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/static/sw.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kjvstudy_org/static/sw.js b/kjvstudy_org/static/sw.js index 370b5f4..a717a64 100644 --- a/kjvstudy_org/static/sw.js +++ b/kjvstudy_org/static/sw.js @@ -169,7 +169,7 @@ async function startBackgroundCaching() { }); // Concurrent pool - keep N requests in flight at all times - const CONCURRENCY = 100; // Number of concurrent requests + const CONCURRENCY = 200; // Number of concurrent requests const PROGRESS_INTERVAL = 250; // Notify every N completions let nextIndex = 0;