Config: Reduce RecommendedMem from 5 to 3 GB #1921

This allows servers with 4 GB to run more than one worker if needed.
This commit is contained in:
Michael Mayer 2022-01-20 11:03:27 +01:00
parent 039b5351ff
commit 28e3b37944

View file

@ -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 {