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)); }