From e10096bffef2e242316cc202b2be2eb821cefea0 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Thu, 4 Dec 2025 15:42:09 +0100 Subject: [PATCH] chore(config): use redis for caching --- config/cache.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/cache.php b/config/cache.php index 4cd7f7fd5..13144cae1 100644 --- a/config/cache.php +++ b/config/cache.php @@ -16,7 +16,7 @@ return [ | */ - 'default' => env('CACHE_STORE', 'database'), + 'default' => env('CACHE_STORE', 'redis'), /* |-------------------------------------------------------------------------- @@ -116,5 +116,5 @@ return [ | */ - 'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'), + 'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'coolify')).'-cache-'), ];