-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Expand file tree
/
Copy pathMemcacheLegacy.php
More file actions
59 lines (49 loc) · 1.56 KB
/
Copy pathMemcacheLegacy.php
File metadata and controls
59 lines (49 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Settings\SetupChecks;
use OC\Memcache\Redis;
use OCP\IConfig;
use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\SetupCheck\ISetupCheck;
use OCP\SetupCheck\SetupResult;
class MemcacheLegacy implements ISetupCheck {
public function __construct(
private readonly IL10N $l10n,
private readonly IConfig $config,
private readonly IURLGenerator $urlGenerator,
) {
}
#[\Override]
public function getName(): string {
return $this->l10n->t('Redis cache');
}
#[\Override]
public function getCategory(): string {
return 'system';
}
#[\Override]
public function run(): SetupResult {
if ($this->isLegacyRedisUsed()) {
return SetupResult::info(
$this->l10n->t('You are still using the old Redis cache backend. For full support of latest Valkey and Redis features, like clustering and sentinel, please switch to the new KeyValueCache backend.'),
$this->urlGenerator->linkToDocs('admin-cache')
);
} else {
return SetupResult::success($this->l10n->t('No legacy Redis cache detected'));
}
}
protected function isLegacyRedisUsed(): bool {
$memcacheDistributedClass = $this->config->getSystemValue('memcache.distributed', null);
$memcacheLockingClass = $this->config->getSystemValue('memcache.locking', null);
/** @psalm-suppress DeprecatedClass */
if ($memcacheDistributedClass === Redis::class || $memcacheLockingClass === Redis::class) {
return true;
}
return false;
}
}