When pulling 1000+ records, now matter how simple, using Extbase in TYPO3 (in a custom extension), it always takes forever. Using custom SELECT statements (like $query->statement( "SELECT......) though is MUCH faster.
I've worked with TYPO3 (and Extbase) for years and years, and I always run into the problem that when working with large amounts (1000+) of records, pulling and displaying data from any table gets REALLY SLOW as the number of records grows. I always end up using $query->statement( "SELECT * from this or that table" ), which for some reason is MUCH faster than using Extbase's built-in query methods that use $query->matching(........);
Does anyone know how to speed up the regular (built-in) query methods so they match the "custom statement method" speed?
I've experienced this issue ever since version 6.x - I'm now using 9.x