2
I saw that it is possible to make a system in PHP that responds in parts, I did not apply, but basically would use this function:
ob_implicit_flush()
So any output would be sent directly to the browser of the browser, as opposed to waiting for the system to finish to send everything to output.
Well, this has big impacts on performance, it could be bad somehow?
The idea is to list products, and go printing as PHP der the output(echo), so you could see some products without needing all were processed to successively give the output.