Increase download concurrency to 200 workers

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-30 01:52:16 -05:00
parent be2a2f0c62
commit 3df9a95acb
+1 -1
View File
@@ -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;