Actions
Feature proposal #7503
closedImprove paging behavior
Feature proposal #7503:
Improve paging behavior
Description
Currently paging is doing a count query before the select query, which isn't really necessary. We simply need to do the select query and add +1 to the LIMIT. So for example we want 15 entries, grab 16. If there are 16 we know there's another page. This completely eliminates an unnecessary query.
Actions