diff options
author | Mario <mario@mariovavti.com> | 2024-01-28 17:03:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-01-28 17:03:05 +0000 |
commit | 09465619e53c9c0a04ee73cecc3fc2d87ee74d55 (patch) | |
tree | 1de11b57339b770c4fffc166c0feb7fb702a4cb5 /Zotlabs/Lib/ASCache.php | |
parent | 390af7722df44dbfe4754f6814940d90774f5d15 (diff) | |
download | volse-hubzilla-09465619e53c9c0a04ee73cecc3fc2d87ee74d55.tar.gz volse-hubzilla-09465619e53c9c0a04ee73cecc3fc2d87ee74d55.tar.bz2 volse-hubzilla-09465619e53c9c0a04ee73cecc3fc2d87ee74d55.zip |
enable object cash by default, introduce system.cache_expire_days and default to 7, default system.default_expire_days to 30 and system.active_expire_days to 7
Diffstat (limited to 'Zotlabs/Lib/ASCache.php')
-rw-r--r-- | Zotlabs/Lib/ASCache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ASCache.php b/Zotlabs/Lib/ASCache.php index 63bd73ea7..4904a1d8a 100644 --- a/Zotlabs/Lib/ASCache.php +++ b/Zotlabs/Lib/ASCache.php @@ -8,7 +8,7 @@ namespace Zotlabs\Lib; class ASCache { public static function isEnabled() { - return Config::Get('system', 'as_object_cache_enabled', false); + return Config::Get('system', 'as_object_cache_enabled', true); } public static function getAge() { |