From b64277feb40baa1ce6d9c8d641a5d329336deb17 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Fri, 25 Apr 2025 09:27:22 -0700 Subject: [PATCH] Added 'valkey' cache driver as an alias of 'redis' --- app/src/Factories/CacheFactory.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/Factories/CacheFactory.php b/app/src/Factories/CacheFactory.php index cfb7d7b..61f0ead 100644 --- a/app/src/Factories/CacheFactory.php +++ b/app/src/Factories/CacheFactory.php @@ -36,6 +36,7 @@ class CacheFactory 'memcached' => $this->getMemcachedAdapter(), 'php-file' => $this->getPhpFilesAdapter(), 'redis' => $this->getRedisAdapter(), + 'valkey' => $this->getRedisAdapter(), default => throw InvalidConfiguration::fromConfig('cache_driver', $this->config->get('cache_driver')) }; }