From c0e6aabeb13487e798c6b3e54926e3362dcc2773 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 22 Jun 2011 10:04:10 -0500 Subject: Fix performance issues with new PackageDepends lookups We do a lookup by DepName in the package details view, but I made the silly mistake of forgetting this index addition in the upgrade steps. Lukas: Fix numbering in "UPGRADING". Signed-off-by: Dan McGee Signed-off-by: Lukas Fleischer --- UPGRADING | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'UPGRADING') diff --git a/UPGRADING b/UPGRADING index ad7ad96c..b0185a13 100644 --- a/UPGRADING +++ b/UPGRADING @@ -9,13 +9,15 @@ each AUR upgrade by running `make install` in the "po/" directory. 2. Remove the "NewPkgNotify" column from the "Users" table: ----- ALTER TABLE Users DROP COLUMN NewPkgNotify; ----- -3. Rename "web/lib/config.inc" to "web/lib/config.inc.php". +3. Fix up issues with depends performance on large dataset. + +ALTER TABLE PackageDepends ADD INDEX (DepName); + +4. Rename "web/lib/config.inc" to "web/lib/config.inc.php". -4. Merge "web/lib/config.inc.php.proto" with "web/lib/config.inc.php". +5. Merge "web/lib/config.inc.php.proto" with "web/lib/config.inc.php". From 1.8.1 to 1.8.2 ------------------- -- cgit v1.2.3-24-g4f1b