From cf393cbe75b99d6f67fd65fd81f44ed864956f55 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Fri, 25 Jun 2021 22:30:02 -0700 Subject: [PATCH] Updated default cache lifetime to one hour --- app/config/cache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/config/cache.php b/app/config/cache.php index bcf70f9..af4813a 100644 --- a/app/config/cache.php +++ b/app/config/cache.php @@ -17,9 +17,9 @@ return [ /** * The app cache lifetime (in seconds). If set to 0, cache indefinitely. * - * Default value: 0 (indefinitely) + * Default value: 3600 (one hour) */ - 'cache_lifetime' => DI\env('CACHE_LIFETIME', 0), + 'cache_lifetime' => DI\env('CACHE_LIFETIME', 3600), /** * Some cache drivers require manually pruning the cache periodically to