From 28e3b3794400ec84b334a7976d80a356da549b29 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Thu, 20 Jan 2022 11:03:27 +0100 Subject: [PATCH] Config: Reduce RecommendedMem from 5 to 3 GB #1921 This allows servers with 4 GB to run more than one worker if needed. --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index a34367f18..0b1de08e2 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -63,7 +63,7 @@ const Gigabyte = Megabyte * 1000 const MinMem = Gigabyte // RecommendedMem is the recommended amount of system memory. -const RecommendedMem = 5 * Gigabyte +const RecommendedMem = 3 * Gigabyte // Config holds database, cache and all parameters of photoprism type Config struct {