diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-22 17:04:10 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-06-25 11:29:52 +0200 |
commit | c0e6aabeb13487e798c6b3e54926e3362dcc2773 (patch) | |
tree | 70826c5c8beb778d47bdf5fe67fa78cb1fad70ca | |
parent | 0e9f8c0ff5a315814de3223e5987812fa3a81447 (diff) | |
download | aur-c0e6aabeb13487e798c6b3e54926e3362dcc2773.tar.gz aur-c0e6aabeb13487e798c6b3e54926e3362dcc2773.tar.xz |
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 <dan@archlinux.org>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | UPGRADING | 10 | ||||
-rw-r--r-- | support/schema/aur-schema.sql | 1 |
2 files changed, 7 insertions, 4 deletions
@@ -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 ------------------- diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql index e64ae82b..88d074e3 100644 --- a/support/schema/aur-schema.sql +++ b/support/schema/aur-schema.sql @@ -123,6 +123,7 @@ CREATE TABLE PackageDepends ( DepName VARCHAR(64) NOT NULL, DepCondition VARCHAR(20), INDEX (PackageID), + INDEX (DepName), FOREIGN KEY (PackageID) REFERENCES Packages(ID) ON DELETE CASCADE ) ENGINE = InnoDB; |