]> git.koha-community.org Git - koha.git/commit
Bug 7886 - C4/ShelfBrowser slow SQL performance
authorDobrica Pavlinusic <dpavlin@rot13.org>
Wed, 4 Apr 2012 23:03:30 +0000 (01:03 +0200)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Fri, 13 Jul 2012 01:35:14 +0000 (21:35 -0400)
commit4bc63c0aebc62ecf4f8a660baea868697bc4ea81
treec6d045c2bf82b17db76873cd5134edc55e666e0b
parent22f8009386eafc04c0e3b3b3f3121b4a2c1d1431
Bug 7886 - C4/ShelfBrowser slow SQL performance

ShelfBrowser uses two SQL queries with syntax

WHERE ((cn_sort = ? AND itemnumber < ?) OR cn_sort < ?)
AND homebranch = ? AND location = ? AND ccode = ?

homebranch already has index, and adding indexes on ccode and location
improves performance by 30% for each query since MySQL is able to use
index_merge intersect(items_ccode,homebranch,items_location)

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
(cherry picked from commit d8e702dd25dfb09f99620ea9f5d3251033d16864)
installer/data/mysql/updatedatabase.pl