diff options
author | Dan McGee <dan@archlinux.org> | 2011-06-22 10:04:11 -0500 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-06-25 11:29:55 +0200 |
commit | 3c110b13b591308cb42767c9cdf7262c11ea3778 (patch) | |
tree | a619aee53e4d6bb354a909f64ae46af7f7ee86f4 /web/template/stats | |
parent | c0e6aabeb13487e798c6b3e54926e3362dcc2773 (diff) | |
download | aurweb-3c110b13b591308cb42767c9cdf7262c11ea3778.tar.xz |
Use sane ORDER BY clauses in package list queries
We were doing some silly things here with an "ORDER BY Name, CategoryID"
clause, due to the fact that Name is unique, and thus any additional
ordering after Name will have no effect. Of course, the dumb as a box of
rocks MySQL query optimizer doesn't realize this, leading to full table
scans every time of ~30000 packages instead of using index scans for the
ordering and only retrieving the first 50 rows.
The biggest change is noted in the default sort order as it cuts down
the columns to one, but we can remove the redundant sort from other
orderings as well, even though those will still not be able to use an
index-driven query plan.
Signed-off-by: Dan McGee <dan@archlinux.org>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/template/stats')
0 files changed, 0 insertions, 0 deletions