Hi there! I’m looking for a way to have a custom pagination query for the count, like was possible in Cake2 with paginateCount().
I have a performance problem on an articles table joined with categories. The paginate query takes 20ms, while the count query takes an average of 500ms. If I manually run the count query on DB without the join, it takes 30ms.
Now, I know that executing the same exact query leaves no space for mistakes and for incorrect numbering, but in this case I don’t really need the ->contain([‘Categories’]) on the count query since it’s not changing the number of returned rows, and I’m looking for a way to remove it. It seems that with the new ORM is not possible to use a custom count query and cannot find a solution.
Any ideas? Thanks!