Bug #54929
closedSpeedup Category Listing by SQL Keys
100%
Description
When a category listing the the Backend is made, the following SQL Statements are issued:
SELECT sys_category.uid,sys_category.title,sys_category.t3ver_id,sys_category.t3ver_state,sys_category.t3ver_wsid,sys_category.t3ver_count,sys_category.hidden,sys_category.starttime,sys_category.endtime FROM sys_category WHERE sys_category.pid<>-1 AND sys_category.deleted=0 AND sys_category.sys_language_uid IN (-1, 0) ORDER BY sys_category.sorting ASC;
(Twice per Category Tree)
plus per each category element
SELECT uid FROM sys_category WHERE FIND_IN_SET('9',parent);
Possible Solution: Add two additional indexes to sys_category
Updated by Gerrit Code Review almost 11 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/26775
Updated by Gerrit Code Review almost 11 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/26775
Updated by Ingo Schmitt almost 11 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 1044c801a47b07089369dd5a278949e307f8b487.
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed