Hi,
I am aware that MYDBR has a dbr.pager class which enables client-side pagination of result sets.
The problem with this is that with a very large result set, the web server has to parse it all out and it takes a long time. Given the fact that pagination is necessary anyway, it would be much more optimal to do this on the server side so that only the current page subset of results needs to be parsed by the web server...
Perhaps I am looking at this from the wrong context, but is there a way to load results in chunks instead of relying on client-side pagination (which does not solve the slow loading issue).
Thank you kindly!