I have what I thought was a simple requirement, but am now stumped.
In some cases users call our data and ingest into their own systems, normally we do something like this
The url that calls our application may say something like page=1, page=2
When it hist our application we formulate a query that uses start and total
start 1, total 100
start 101, total 100
That works until I hit the 10,000 limit, so I can't do
start 10001, total 100
This is not for realtime search. Each page would only contain 750 or so records, it won't happen very often (once a day for say 100 pages\calls)
I understand the issue, but not what would be the best solution
- change the upper limit, although I know it is not advise
- implement scrolling, would require changes to the build of my application for these edge cases
Does anyone have any thoughts on this (I am expecting to have to do 2)
Thanks
Grant