I am using a java client (jrets) to query a RETS server. This rets server does not support the OFFSET functionality.
The server admin told me to use the MODIFIED field as a way to page through the records. However, I found that this process does not work.
My use case:
The use case is to download all records of a certain type since january of this year. So, I issue a query with a limit of 500 and download records. I go through the data, and get the maximum MODIFIED date. Then I issue another query from that point on.
However I find that the server is not sorting the data by MODIFIED date and returning it. So, data in each batch contains gaps.
Is there a better way to achieve what I want to do?