From 857c11be850580a39e19f29b90a6f0d198f37321 Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Sun, 6 Feb 2022 06:39:46 +0000 Subject: [PATCH] Enable metadata cache by default --- src/config.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cr b/src/config.cr index c0f7d6a..b5b77db 100644 --- a/src/config.cr +++ b/src/config.cr @@ -19,7 +19,7 @@ class Config property upload_path = "~/mango/uploads" property plugin_path = "~/mango/plugins" property download_timeout_seconds : Int32 = 30 - property cache_enabled = false + property cache_enabled = true property cache_size_mbs = 50 property cache_log_enabled = true property disable_login = false