From 43e38a120fae0bdd99c169c4f780b6eefdfc5aa5 Mon Sep 17 00:00:00 2001 From: yemkareems Date: Tue, 26 Aug 2025 09:48:07 +0530 Subject: [PATCH] fix: added set/get/delete/clear to register command Signed-off-by: yemkareems --- core/register_command.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/register_command.php b/core/register_command.php index 9412562747b..1ef6ae795fd 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -158,6 +158,10 @@ if ($config->getSystemValueBool('installed', false)) { $application->add(Server::get(Command\TaskProcessing\Statistics::class)); $application->add(Server::get(Command\Memcache\RedisCommand::class)); + $application->add(Server::get(Command\Memcache\DistributedClear::class)); + $application->add(Server::get(Command\Memcache\DistributedDelete::class)); + $application->add(Server::get(Command\Memcache\DistributedGet::class)); + $application->add(Server::get(Command\Memcache\DistributedSet::class)); } else { $application->add(Server::get(Command\Maintenance\Install::class)); }