From f6f93c86c8b449499e455f5f9c21c1f3f0182766 Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Sat, 19 Jul 2025 08:07:36 -0500 Subject: [PATCH] Update launch.json to modify memory-gc strategy and comment out upstream server configuration - Changed memory-gc strategy from 'lfu' to 'lru' for improved cache management. - Commented out the upstream server configuration to prevent potential connectivity issues during development. --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 2ae8023..48c710f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -56,11 +56,11 @@ "--memory", "1G", "--memory-gc", - "lfu", + "lru", "--log-level", "debug", - "--upstream", - "http://192.168.2.5:80", + // "--upstream", + // "http://192.168.2.5:80", ], } ]