We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
valkey:
valkeys:
1 parent 14995ae commit 0bd2dacCopy full SHA for 0bd2dac
CHANGELOG.md
@@ -1,6 +1,11 @@
1
CHANGELOG
2
=========
3
4
+7.3
5
+---
6
+
7
+ * Add support for `valkey:` / `valkeys:` schemes
8
9
7.2
10
---
11
Store/StoreFactory.php
@@ -62,6 +62,8 @@ public static function createStore(#[\SensitiveParameter] object|string $connect
62
63
case str_starts_with($connection, 'redis:'):
64
case str_starts_with($connection, 'rediss:'):
65
+ case str_starts_with($connection, 'valkey:'):
66
+ case str_starts_with($connection, 'valkeys:'):
67
case str_starts_with($connection, 'memcached:'):
68
if (!class_exists(AbstractAdapter::class)) {
69
throw new InvalidArgumentException('Unsupported Redis or Memcached DSN. Try running "composer require symfony/cache".');
0 commit comments