diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-02-07 09:55:39 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2022-04-19 12:37:36 +0200 |
commit | 7fbd93b2ad66a1ca83ef2a2778128bf2cda06caf (patch) | |
tree | 17fb8d130769954261661643c07a3ea46d0e2355 /lib/private/AllConfig.php | |
parent | cd95fce105fe5f0e71b1bcac7685464f936b9749 (diff) | |
download | nextcloud-server-7fbd93b2ad66a1ca83ef2a2778128bf2cda06caf.tar.gz nextcloud-server-7fbd93b2ad66a1ca83ef2a2778128bf2cda06caf.zip |
Additional index on oc_preferences to make sure that gettingh values without a user filter is fast
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/private/AllConfig.php')
-rw-r--r-- | lib/private/AllConfig.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/AllConfig.php b/lib/private/AllConfig.php index 36eb0bbf6d9..e5a6e6a5acd 100644 --- a/lib/private/AllConfig.php +++ b/lib/private/AllConfig.php @@ -497,6 +497,8 @@ class AllConfig implements \OCP\IConfig { $sql .= 'AND `configvalue` = ?'; } + $sql .= ' ORDER BY `userid`'; + $result = $this->connection->executeQuery($sql, [$appName, $key, $value]); $userIDs = []; @@ -534,6 +536,8 @@ class AllConfig implements \OCP\IConfig { $sql .= 'AND LOWER(`configvalue`) = ?'; } + $sql .= ' ORDER BY `userid`'; + $result = $this->connection->executeQuery($sql, [$appName, $key, strtolower($value)]); $userIDs = []; |