From 98661aad15f1554400819c44b36714e1bc1f42db Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Wed, 28 Jan 2026 10:41:44 +0100 Subject: [PATCH] Increase default GC frequency --- cmd/cc-backend/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cc-backend/main.go b/cmd/cc-backend/main.go index deefce34..3c70a960 100644 --- a/cmd/cc-backend/main.go +++ b/cmd/cc-backend/main.go @@ -399,7 +399,7 @@ func runServer(ctx context.Context) error { // Set GC percent if not configured if os.Getenv(envGOGC) == "" { - debug.SetGCPercent(25) + debug.SetGCPercent(15) } runtime.SystemdNotify(true, "running")