* gives the admin a chance to discover the missing indexes and improve the performance of the instance without digging through the manual * nicely integrated in the setup checks where this kind of hints belong to * also adds an option to integrate this from an app based on events * fix style of setting warnings Signed-off-by: Morris Jobke <hey@morrisjobke.de>pull/9735/head
parent
f13c2b20b6
commit
393d9aae74
@ -0,0 +1,39 @@ |
||||
<?php |
||||
/** |
||||
* @copyright Copyright (c) 2018 Morris Jobke <hey@morrisjobke.de> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
namespace OC\DB; |
||||
|
||||
|
||||
class MissingIndexInformation { |
||||
|
||||
private $listOfMissingIndexes = []; |
||||
|
||||
public function addHintForMissingSubject($tableName, $indexName) { |
||||
$this->listOfMissingIndexes[] = [ |
||||
'tableName' => $tableName, |
||||
'indexName' => $indexName |
||||
]; |
||||
} |
||||
|
||||
public function getListOfMissingIndexes() { |
||||
return $this->listOfMissingIndexes; |
||||
} |
||||
} |
||||
Loading…
Reference in new issue