/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Cache/Backend/Valkey.php
22 строки
473 B
Rajesh Kumar
AC-14297: Create CLI command for Valkey 8 support in 2.4.9-alpha1
18 июн 2025, 10:11
18 июн 2025, 10:11
61250cd
Код
Авторство
О чём код?
<?php /** * Copyright 2025 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Cache\Backend; /** * Valkey cache backend * * Valkey is a Redis-compatible in-memory store. This class extends the Redis backend * to leverage the same functionality while allowing Magento to treat Valkey as a separate backend. */ class Valkey extends Redis { /** * Backend type identifier */ public const BACKEND_TYPE = 'valkey'; }